summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/mysql/patch/rights.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/mysql/patch/rights.sql')
-rw-r--r--upgrades/dbpatches/1.3/mysql/patch/rights.sql13
1 files changed, 0 insertions, 13 deletions
diff --git a/upgrades/dbpatches/1.3/mysql/patch/rights.sql b/upgrades/dbpatches/1.3/mysql/patch/rights.sql
deleted file mode 100644
index 6d737ea9..00000000
--- a/upgrades/dbpatches/1.3/mysql/patch/rights.sql
+++ /dev/null
@@ -1,13 +0,0 @@
-CREATE TABLE rights_tmp (
- rightid bigint unsigned DEFAULT '0' NOT NULL,
- groupid bigint unsigned DEFAULT '0' NOT NULL,
- type integer DEFAULT '0' NOT NULL,
- permission integer DEFAULT '0' NOT NULL,
- id bigint unsigned ,
- PRIMARY KEY (rightid)
-) ENGINE=InnoDB;
-CREATE INDEX rights_1 on rights_tmp (groupid);
-
---insert into rights_tmp select * from rights;
-drop table rights;
-alter table rights_tmp rename rights;