function simplenews_update_6201 in Simplenews 6
Same name and namespace in other branches
- 6.2 simplenews.install \simplenews_update_6201()
Correction of field size mismatch caused by simplenews_update_6009().
File
- ./
simplenews.install, line 620 - 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;
}