function bakery_schema in Bakery Single Sign-On System 6.2
Same name and namespace in other branches
- 8.2 bakery.install \bakery_schema()
- 7.4 bakery.install \bakery_schema()
- 7.2 bakery.install \bakery_schema()
- 7.3 bakery.install \bakery_schema()
File
- ./
bakery.install, line 3
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',
),
),
);
}