- Patch #7121 by Adrian: added missing PostgreSQL update function.
parent
610ad02ea7
commit
c1d42fb267
|
@ -747,7 +747,11 @@ function update_78() {
|
||||||
)");
|
)");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* Needs PostgreSQL equivalent */
|
$ret[] = update_sql("CREATE TABLE {filters} (
|
||||||
|
module varchar(64) NOT NULL DEFAULT '',
|
||||||
|
weight smallint NOT NULL DEFAULT 0
|
||||||
|
);");
|
||||||
|
$ret[] = update_sql("CREATE INDEX {filters_weight} ON {filters} (weight);");
|
||||||
}
|
}
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue