function user_relationship_implications_schema in User Relationships 6
Same name and namespace in other branches
- 7 user_relationship_implications/user_relationship_implications.install \user_relationship_implications_schema()
@file User Relationship Implications Schema
File
- user_relationship_implications/
user_relationship_implications.install, line 7 - User Relationship Implications Schema
Code
function user_relationship_implications_schema() {
$schema['user_relationship_implications'] = array(
'fields' => array(
'riid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'rtid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'implies_rtid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'strict' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
),
'reverse' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
),
),
'indexes' => array(
'rtid' => array(
'rtid',
),
'implies_rtid' => array(
'implies_rtid',
),
),
'primary key' => array(
'riid',
),
);
return $schema;
}