You are here

function simplenews_scheduler_update_6004 in Simplenews Scheduler 6.2

Implementation of hook_update_N().

File

./simplenews_scheduler.install, line 173
Install and uninstall functions for the Simplenews Scheduler module.

Code

function simplenews_scheduler_update_6004() {
  $ret = array();
  db_add_field($ret, 'simplenews_scheduler', 'php_eval', array(
    'type' => 'blob',
  ));
  return $ret;
}