summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/mysql/1.1/applications.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/mysql/1.1/applications.sql')
-rw-r--r--upgrades/dbpatches/1.3/mysql/1.1/applications.sql9
1 files changed, 0 insertions, 9 deletions
diff --git a/upgrades/dbpatches/1.3/mysql/1.1/applications.sql b/upgrades/dbpatches/1.3/mysql/1.1/applications.sql
deleted file mode 100644
index 71d21452..00000000
--- a/upgrades/dbpatches/1.3/mysql/1.1/applications.sql
+++ /dev/null
@@ -1,9 +0,0 @@
-CREATE TABLE applications (
- applicationid int(4) NOT NULL auto_increment,
- hostid int(4) DEFAULT '0' NOT NULL,
- name varchar(255) DEFAULT '' NOT NULL,
- templateid int(4) DEFAULT '0' NOT NULL,
- PRIMARY KEY (applicationid),
- KEY templateid (templateid),
- UNIQUE appname (hostid,name)
-) type=InnoDB;