summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/mysql/1.1/history_log.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/mysql/1.1/history_log.sql')
-rw-r--r--upgrades/dbpatches/1.3/mysql/1.1/history_log.sql11
1 files changed, 0 insertions, 11 deletions
diff --git a/upgrades/dbpatches/1.3/mysql/1.1/history_log.sql b/upgrades/dbpatches/1.3/mysql/1.1/history_log.sql
deleted file mode 100644
index a313fc3a..00000000
--- a/upgrades/dbpatches/1.3/mysql/1.1/history_log.sql
+++ /dev/null
@@ -1,11 +0,0 @@
-CREATE TABLE history_log (
- id int(4) NOT NULL auto_increment,
- itemid int(4) DEFAULT '0' NOT NULL,
- clock int(4) DEFAULT '0' NOT NULL,
- timestamp int(4) DEFAULT '0' NOT NULL,
- source varchar(64) DEFAULT '' NOT NULL,
- severity int(4) DEFAULT '0' NOT NULL,
- value text DEFAULT '' NOT NULL,
- PRIMARY KEY (id),
- KEY itemidclock (itemid, clock)
-) type=InnoDB;