function notifications_schema in Notifications 6
Same name and namespace in other branches
- 6.4 notifications.install \notifications_schema()
- 6.2 notifications.install \notifications_schema()
- 6.3 notifications.install \notifications_schema()
- 7 notifications.install \notifications_schema()
Implementation of hook_schema()
File
- ./
notifications.install, line 6
Code
function notifications_schema() {
$schema['notifications'] = array(
'fields' => array(
'sid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'disp-width' => '10',
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'disp-width' => '11',
),
'type' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'event_type' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'conditions' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'disp-width' => '10',
),
'send_interval' => array(
'type' => 'int',
'not null' => FALSE,
'disp-width' => '11',
),
'send_method' => array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
),
'cron' => array(
'type' => 'int',
'unsigned' => TRUE,
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
'disp-width' => '3',
),
'module' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 1,
'disp-width' => '11',
),
'destination' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
),
'primary key' => array(
'sid',
),
);
$schema['notifications_fields'] = array(
'fields' => array(
'sid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'disp-width' => '10',
),
'field' => array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
),
'value' => array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
),
'intval' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'disp-width' => '11',
),
),
'primary key' => array(
'sid',
'field',
),
);
$schema['notifications_event'] = array(
'fields' => array(
'eid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'disp-width' => '11',
),
'module' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'type' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'action' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'oid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '11',
),
'language' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'uid' => array(
'type' => 'int',
'not null' => FALSE,
'disp-width' => '11',
),
'params' => array(
'type' => 'text',
'not null' => FALSE,
),
'created' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '11',
),
'counter' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '11',
),
),
'primary key' => array(
'eid',
),
);
$schema['notifications_queue'] = array(
'fields' => array(
'sqid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'disp-width' => '10',
),
'eid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '11',
),
'sid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '11',
),
'uid' => array(
'type' => 'int',
'not null' => FALSE,
'disp-width' => '11',
),
'language' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'type' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'send_interval' => array(
'type' => 'int',
'not null' => FALSE,
'disp-width' => '11',
),
'send_method' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'sent' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '10',
),
'created' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '10',
),
'cron' => array(
'type' => 'int',
'unsigned' => TRUE,
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
'disp-width' => '3',
),
'conditions' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '10',
),
'module' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'destination' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
),
'primary key' => array(
'sqid',
),
);
$schema['notifications_sent'] = array(
'fields' => array(
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'disp-width' => '11',
),
'send_interval' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'disp-width' => '10',
),
'send_method' => array(
'type' => 'varchar',
'length' => '50',
'not null' => TRUE,
),
'sent' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'disp-width' => '10',
),
),
'primary key' => array(
'uid',
'send_interval',
'send_method',
),
);
return $schema;
}