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