You are here

function simplenews_scheduler_update_6003 in Simplenews Scheduler 6

Same name and namespace in other branches
  1. 6.2 simplenews_scheduler.install \simplenews_scheduler_update_6003()

Implementation of hook_update_N().

File

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

Code

function simplenews_scheduler_update_6003() {
  $ret = array();
  db_add_primary_key($ret, 'simplenews_scheduler_editions', array(
    'eid',
  ));
  return $ret;
}