Postgres cannot change column types at time change was made.
execute_sql("CREATE INDEX {$CFG->prefix}user_auth_idx ON {$CFG->prefix}user (auth)");
}
+ if ($oldversion < 2004092000) { //redoing this just to be sure that column type is text (postgres type changes didnt work when this was done first time)
+ table_column("config", "value", "value", "text", "", "", "");
+ }
return $result;
// database to determine whether upgrades should
// be performed (see lib/db/*.php)
-$version = 2004091900; // The current version is a date (YYYYMMDDXX)
+$version = 2004092000; // The current version is a date (YYYYMMDDXX)
$release = "1.5 unstable development"; // User-friendly version number