You are here

function date_api_update_5000 in Date 5.2

Same name and namespace in other branches
  1. 6 date_api.install \date_api_update_5000()

Implementation of hook_update().

File

./date_api.install, line 116

Code

function date_api_update_5000() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {users} ADD timezone_name varchar(50) NOT NULL default ''");
  return $ret;
}