function date_api_update_5000 in Date 6
Same name and namespace in other branches
- 5.2 date_api.install \date_api_update_5000()
Implementation of hook_update().
File
- ./
date_api.install, line 96
Code
function date_api_update_5000() {
$ret = array();
$ret[] = update_sql("ALTER TABLE {users} ADD timezone_name varchar(50) NOT NULL default ''");
return $ret;
}