summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.4/postgresql/patch/usrgrp.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/usrgrp.sql')
-rw-r--r--upgrades/dbpatches/1.4/postgresql/patch/usrgrp.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/usrgrp.sql b/upgrades/dbpatches/1.4/postgresql/patch/usrgrp.sql
index 5ad81ff7..16bc7478 100644
--- a/upgrades/dbpatches/1.4/postgresql/patch/usrgrp.sql
+++ b/upgrades/dbpatches/1.4/postgresql/patch/usrgrp.sql
@@ -2,7 +2,7 @@ CREATE TABLE usrgrp_tmp (
usrgrpid bigint DEFAULT '0' NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
PRIMARY KEY (usrgrpid)
-);
+) with OIDS;
CREATE INDEX usrgrp_1 on usrgrp_tmp (name);
insert into usrgrp_tmp select * from usrgrp;