- Patch #91477 by havran: fixed PostgreSQL install with database table prefixing. Missing brackets.

5.x
Dries Buytaert 2006-10-26 23:32:43 +00:00
parent 82637c026a
commit 42b1dc6215
1 changed files with 2 additions and 2 deletions

View File

@ -708,7 +708,7 @@ function system_install() {
list smallint_unsigned NOT NULL default 0,
PRIMARY KEY (fid, vid)
)");
db_query("CREATE INDEX file_revisions_vid_idx ON file_revisions(vid)");
db_query("CREATE INDEX {file_revisions}_vid_idx ON {file_revisions} (vid)");
db_query("CREATE TABLE {filter_formats} (
format serial,