function mobile_tools_roles_schema in Mobile Tools 6.3
Same name and namespace in other branches
- 6.2 modules/mobile_tools_roles/mobile_tools_roles.install \mobile_tools_roles_schema()
- 7.2 mobile_tools_roles/mobile_tools_roles.install \mobile_tools_roles_schema()
Installing the Mobile Tools roles schema
File
- ./
mobile_tools_roles.install, line 25 - Mobile Tools Roles installation file
Code
function mobile_tools_roles_schema() {
$schema['mobile_tools_roles_relations'] = array(
'fields' => array(
'rid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'mrid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
),
);
return $schema;
}