You are here

function date_copy_update_5000 in Date 5.2

Same name and namespace in other branches
  1. 6 date_copy/date_copy.install \date_copy_update_5000()

Implementation of hook_update().

File

date_copy/date_copy.install, line 14

Code

function date_copy_update_5000() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 1 WHERE name = 'date_copy'");
  return $ret;
}