You are here

function simplenews_update_6009 in Simplenews 6

Addition of error to simplenews_mail_cache to mark an email error.

File

./simplenews.install, line 601
Simplenews installation.

Code

function simplenews_update_6009() {
  $ret = array();
  db_add_field($ret, 'simplenews_mail_spool', 'error', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}