diff --git a/database/updates.inc b/database/updates.inc index e39267ef499..e5f5b9d84ca 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -747,7 +747,11 @@ function update_78() { )"); } 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; }