function simplenews_update_6004 in Simplenews 6.2
Same name and namespace in other branches
- 6 simplenews.install \simplenews_update_6004()
Add spool table and remove cache table.
File
- ./
simplenews.install, line 558 - Simplenews installation.
Code
function simplenews_update_6004() {
$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 recipient.',
'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 = send).',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
),
'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',
),
),
);
$ret = array();
// New table to buffer mail messages during sending
db_create_table($ret, 'simplenews_mail_spool', $schema['simplenews_mail_spool']);
db_drop_table($ret, 'simplenews_mail_cache');
return $ret;
}