diff options
Diffstat (limited to 'upgrades/dbpatches/1.3/postgresql/patch/rights.sql')
-rw-r--r-- | upgrades/dbpatches/1.3/postgresql/patch/rights.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.3/postgresql/patch/rights.sql b/upgrades/dbpatches/1.3/postgresql/patch/rights.sql index 9f3d6abf..19d72064 100644 --- a/upgrades/dbpatches/1.3/postgresql/patch/rights.sql +++ b/upgrades/dbpatches/1.3/postgresql/patch/rights.sql @@ -8,6 +8,6 @@ CREATE TABLE rights_tmp ( ); CREATE INDEX rights_1 on rights_tmp (groupid); -insert into rights_tmp select rightid,groupid,type::integer,permission,id from rights; +--insert into rights_tmp select rightid,groupid,type::integer,permission,id from rights; drop table rights; alter table rights_tmp rename to rights; |