You are here

function simplenews_update_6201 in Simplenews 6.2

Same name and namespace in other branches
  1. 6 simplenews.install \simplenews_update_6201()

Correction of field size mismatch caused by simplenews_update_6009().

File

./simplenews.install, line 799
Simplenews installation.

Code

function simplenews_update_6201() {
  $ret = array();
  db_change_field($ret, 'simplenews_mail_spool', 'error', 'error', array(
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}