summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/mysql/1.1/graphs_items.sql
diff options
context:
space:
mode:
authoralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-02-28 14:49:08 +0000
committeralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-02-28 14:49:08 +0000
commit09ad0726ce2decd534f7cd4410f049fca9433839 (patch)
tree080e2a5cd63ade7b3220c575cf24fe6e0762ce28 /upgrades/dbpatches/1.3/mysql/1.1/graphs_items.sql
parent37bd95902dd4725301c18a98e35f84030a2ab910 (diff)
downloadzabbix-09ad0726ce2decd534f7cd4410f049fca9433839.tar.gz
zabbix-09ad0726ce2decd534f7cd4410f049fca9433839.tar.xz
zabbix-09ad0726ce2decd534f7cd4410f049fca9433839.zip
Removed unneeded files from MySQL patches.
git-svn-id: svn://svn.zabbix.com/trunk@3854 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'upgrades/dbpatches/1.3/mysql/1.1/graphs_items.sql')
-rw-r--r--upgrades/dbpatches/1.3/mysql/1.1/graphs_items.sql13
1 files changed, 0 insertions, 13 deletions
diff --git a/upgrades/dbpatches/1.3/mysql/1.1/graphs_items.sql b/upgrades/dbpatches/1.3/mysql/1.1/graphs_items.sql
deleted file mode 100644
index 7b46d3f6..00000000
--- a/upgrades/dbpatches/1.3/mysql/1.1/graphs_items.sql
+++ /dev/null
@@ -1,13 +0,0 @@
-CREATE TABLE graphs_items (
- gitemid int(4) NOT NULL auto_increment,
- graphid int(4) DEFAULT '0' NOT NULL,
- itemid int(4) DEFAULT '0' NOT NULL,
- drawtype int(4) DEFAULT '0' NOT NULL,
- sortorder int(4) DEFAULT '0' NOT NULL,
- color varchar(32) DEFAULT 'Dark Green' NOT NULL,
- yaxisside int(1) DEFAULT '1' NOT NULL,
- calc_fnc int(1) DEFAULT '2' NOT NULL,
- type int(1) DEFAULT '0' NOT NULL,
- periods_cnt int(4) DEFAULT '5' NOT NULL,
- PRIMARY KEY (gitemid)
-) type=InnoDB;