diff --git a/database/updates.inc b/database/updates.inc index f5ddfc7fba5..26f4da7ab1b 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -750,7 +750,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; }