You are here

function mobile_tools_schema in Mobile Tools 6

Same name and namespace in other branches
  1. 7.3 mobile_tools.install \mobile_tools_schema()
  2. 7.2 mobile_tools.install \mobile_tools_schema()

File

./mobile_tools.install, line 39
Mobile Tools installation

Code

function mobile_tools_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;
}