function inactive_user_schema in Inactive User 7
Same name and namespace in other branches
- 6 inactive_user.install \inactive_user_schema()
Implements hook_schema().
File
- ./
inactive_user.install, line 14 - The inactive user module controls inactive users.
Code
function inactive_user_schema() {
$schema['inactive_users'] = array(
'description' => 'The base table for inactive_users.',
'fields' => array(
'uid' => array(
'description' => 'The primary identifier for a user.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'notified_admin' => array(
'description' => 'Admin notifier.',
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'notified_user' => array(
'description' => 'User notifier.',
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'warned_user_block_timestamp' => array(
'description' => 'Timestamp warning.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'notified_user_block' => array(
'description' => 'User block warning.',
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'notified_admin_block' => array(
'description' => 'Timestamp warning.',
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'warned_user_delete_timestamp' => array(
'description' => 'Timestamp warning.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'protected' => array(
'description' => 'Timestamp warning.',
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'uid',
),
);
return $schema;
}