You are here

function bakery_schema in Bakery Single Sign-On System 7.4

Same name and namespace in other branches
  1. 8.2 bakery.install \bakery_schema()
  2. 6.2 bakery.install \bakery_schema()
  3. 7.2 bakery.install \bakery_schema()
  4. 7.3 bakery.install \bakery_schema()

Implements hook_schema().

File

./bakery.install, line 6

Code

function bakery_schema() {
  return array(
    'bakery_user' => array(
      'description' => 'Keep track of UID on subsites, master only.',
      'fields' => array(
        'uid' => array(
          'description' => 'User ID on master site.',
          'type' => 'int',
          'unsigned' => TRUE,
          'not null' => TRUE,
        ),
        'slave' => array(
          'description' => 'Slave site.',
          'type' => 'varchar',
          'length' => 128,
          'not null' => TRUE,
        ),
        'slave_uid' => array(
          'description' => 'User ID on slave site.',
          'type' => 'int',
          'unsigned' => TRUE,
          'not null' => TRUE,
        ),
      ),
      'primary key' => array(
        'uid',
        'slave',
      ),
    ),
  );
}