diff options
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/rights.sql')
-rw-r--r-- | upgrades/dbpatches/1.4/postgresql/patch/rights.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/rights.sql b/upgrades/dbpatches/1.4/postgresql/patch/rights.sql index 19d72064..0ecddbe1 100644 --- a/upgrades/dbpatches/1.4/postgresql/patch/rights.sql +++ b/upgrades/dbpatches/1.4/postgresql/patch/rights.sql @@ -5,7 +5,7 @@ CREATE TABLE rights_tmp ( permission integer DEFAULT '0' NOT NULL, id bigint, PRIMARY KEY (rightid) -); +) with OIDS; CREATE INDEX rights_1 on rights_tmp (groupid); --insert into rights_tmp select rightid,groupid,type::integer,permission,id from rights; |