From a271a281151099e0732fe53c43a370493765fe0f Mon Sep 17 00:00:00 2001 From: laf Date: Thu, 3 Jul 2014 17:58:08 +0100 Subject: [PATCH] Moved the insert statement to the correct SQL file! --- sql-schema/031.sql | 1 - sql-schema/032.sql | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/sql-schema/031.sql b/sql-schema/031.sql index 856c3efa5e..96a662fd02 100644 --- a/sql-schema/031.sql +++ b/sql-schema/031.sql @@ -1,2 +1 @@ ALTER TABLE `sensors` ADD `sensor_alert` TINYINT( 1 ) NOT NULL DEFAULT '1' AFTER `sensor_limit_low_warn` ; -INSERT INTO `graph_types` SET `graph_type`='device', `graph_subtype`='asa_conns',`graph_section`='firewall',`graph_descr`='Current connections',`graph_order`='0'; diff --git a/sql-schema/032.sql b/sql-schema/032.sql index f9f9189f1b..81d5210a0d 100644 --- a/sql-schema/032.sql +++ b/sql-schema/032.sql @@ -1 +1,2 @@ CREATE TABLE IF NOT EXISTS `ciscoASA` ( `ciscoASA_id` int(11) NOT NULL AUTO_INCREMENT, `device_id` int(11) NOT NULL, `oid` varchar(255) NOT NULL, `data` bigint(20) NOT NULL, `high_alert` bigint(20) NOT NULL, `low_alert` bigint(20) NOT NULL, `disabled` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ciscoASA_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +INSERT INTO `graph_types` SET `graph_type`='device', `graph_subtype`='asa_conns',`graph_section`='firewall',`graph_descr`='Current connections',`graph_order`='0';