function notify_schema in Notify 6
Same name and namespace in other branches
- 8 notify.install \notify_schema()
- 7 notify.install \notify_schema()
- 2.0.x notify.install \notify_schema()
- 1.0.x notify.install \notify_schema()
@file Install, update and uninstall functions for the notify module.
File
- ./
notify.install, line 8 - Install, update and uninstall functions for the notify module.
Code
function notify_schema() {
$schema['notify'] = array(
'fields' => array(
'uid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '10',
),
'status' => array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
'disp-width' => '2',
),
'node' => array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
'disp-width' => '2',
),
'comment' => array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
'disp-width' => '2',
),
'attempts' => array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
'disp-width' => '4',
),
'teasers' => array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
'disp-width' => '4',
),
),
'primary key' => array(
'uid',
),
);
return $schema;
}