- Patch #21252 by baudolino: fixed upgrade path of locale_sources table change.

4.7.x
Dries Buytaert 2005-05-10 19:58:21 +00:00
parent 655289b8f9
commit 7355739be1
1 changed files with 19 additions and 1 deletions

View File

@ -112,7 +112,8 @@ $sql_updates = array(
"2005-04-24" => "update_133",
"2005-04-30" => "update_134",
"2005-05-06" => "update_135",
"2005-05-08" => "update_136"
"2005-05-08" => "update_136",
"2005-05-09" => "update_137"
);
function update_32() {
@ -2456,6 +2457,23 @@ function update_136() {
return $ret;
}
function update_137() {
$ret = array();
if ($GLOBALS['db_type'] == 'mysql') {
$ret[] = update_sql("ALTER TABLE {locales_source} CHANGE location location varchar(255) NOT NULL default ''");
}
elseif ($GLOBALS['db_type'] == 'pgsql') {
$ret[] = update_sql("ALTER TABLE {locales_source} RENAME location TO location_old");
$ret[] = update_sql("ALTER TABLE {locales_source} ADD location varchar(255)");
$ret[] = update_sql("ALTER TABLE {locales_source} ALTER location SET NOT NULL");
$ret[] = update_sql("ALTER TABLE {locales_source} ALTER location SET DEFAULT ''");
$ret[] = update_sql("UPDATE {locales_source} SET location = location_old");
$ret[] = update_sql("ALTER TABLE {locales_source} DROP location_old");
}
return $ret;
}
function update_sql($sql) {
$edit = $_POST["edit"];
$result = db_query($sql);