function simplenews_schema in Simplenews 6
Same name and namespace in other branches
- 8.2 simplenews.install \simplenews_schema()
- 8 simplenews.install \simplenews_schema()
- 6.2 simplenews.install \simplenews_schema()
- 7.2 simplenews.install \simplenews_schema()
- 7 simplenews.install \simplenews_schema()
- 3.x simplenews.install \simplenews_schema()
Implementation of hook_schema().
File
- ./
simplenews.install, line 11 - Simplenews installation.
Code
function simplenews_schema() {
$schema['simplenews_subscriptions'] = array(
'description' => 'Subscribers to {simplenews_newsletters}.',
'fields' => array(
'snid' => array(
'description' => 'Primary key: Unique subscription ID.',
'type' => 'serial',
'not null' => TRUE,
),
'activated' => array(
'description' => 'Boolean indicating the status of the subscription.',
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'mail' => array(
'description' => 'The subscription email address.',
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
),
'uid' => array(
'description' => 'The {users}.uid that has the same email address.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'language' => array(
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
'description' => 'Anonymous subscriber preferred language. Empty for authenticated users.',
),
),
'indexes' => array(
'mail' => array(
'mail',
),
'uid' => array(
'uid',
),
),
'primary key' => array(
'snid',
),
);
$schema['simplenews_newsletters'] = array(
'description' => 'Simplenews newsletter data.',
'fields' => array(
'nid' => array(
'description' => '{node} that is used as newsletter.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'vid' => array(
'description' => 'The {node}.vid that identifies the version used as newsletter.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'tid' => array(
'description' => 'The {term_data}.tid (= newsletter series) this issue belongs to.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
's_status' => array(
'description' => 'Sent status of the newsletter issue (0 = not send; 1 = pending; 2 = send). ',
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
's_format' => array(
'description' => 'Format of the newsletter (plain or html).',
'type' => 'varchar',
'length' => 8,
'not null' => TRUE,
'default' => '',
),
'priority' => array(
'description' => 'Email priority according to RFC 2156 and RFC 5231 (0 = none; 1 = highest; 2 = high; 3 = normal; 4 = low; 5 = lowest).',
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'receipt' => array(
'description' => 'Boolean indicating request for email receipt confirmation according to RFC 2822.',
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'nid',
),
);
$schema['simplenews_snid_tid'] = array(
'description' => t('Newsletter series subscription data.'),
'fields' => array(
'snid' => array(
'description' => t('The {simplenews_subscriptions}.snid who is subscribed.'),
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'tid' => array(
'description' => t('The newsletter series ({term_data}.tid) the subscriber is subscribed to.'),
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'snid',
'tid',
),
);
$schema['simplenews_mail_spool'] = array(
'description' => 'Spool for temporary storage of newsletter emails.',
'fields' => array(
'msid' => array(
'description' => 'The primary identifier for a mail spool record.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'mail' => array(
'description' => 'The formatted email address of mail message receipient.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'nid' => array(
'description' => 'The {node}.nid of this newsletter.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'vid' => array(
'description' => 'The {node}.vid of this newsletter.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'tid' => array(
'description' => 'The {term_data}.tid this newsletter issue belongs to.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'status' => array(
'description' => 'The sent status of the email (0 = hold, 1 = pending, 2 = done).',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
),
'error' => array(
'description' => 'A boolean indicating whether an error occured while sending the email.',
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'timestamp' => array(
'description' => 'The time status was set or changed.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'msid',
),
'indexes' => array(
'tid' => array(
'tid',
),
'status' => array(
'status',
),
),
);
return $schema;
}