diff options
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/auditlog.sql')
-rw-r--r-- | upgrades/dbpatches/1.4/postgresql/patch/auditlog.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/auditlog.sql b/upgrades/dbpatches/1.4/postgresql/patch/auditlog.sql index a262a3a8..561bec1d 100644 --- a/upgrades/dbpatches/1.4/postgresql/patch/auditlog.sql +++ b/upgrades/dbpatches/1.4/postgresql/patch/auditlog.sql @@ -6,7 +6,7 @@ CREATE TABLE auditlog_tmp ( resourcetype integer DEFAULT '0' NOT NULL, details varchar(128) DEFAULT '0' NOT NULL, PRIMARY KEY (auditid) -); +) with OIDS; CREATE INDEX auditlog_1 on auditlog_tmp (userid,clock); CREATE INDEX auditlog_2 on auditlog_tmp (clock); |