From fc8307a53b30cf8b551ec32b63c3c2db96d21a82 Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Mon, 20 Sep 2010 07:16:35 +0000 Subject: [PATCH] 2010-09-20 Sergio Martin * extras/pandoradb_migrate_v3.1_to_v3.2.sql: Fixed a two lines ALTER statment to one line for bug 3065850 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3253 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 0380202be9..f4971d0e13 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-09-20 Sergio Martin + + * extras/pandoradb_migrate_v3.1_to_v3.2.sql: Fixed a + two lines ALTER statment to one line for bug 3065850 + 2010-09-17 Sergio Martin * include/functions_events.php diff --git a/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql b/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql index 035aaa2d12..27f6ea374d 100644 --- a/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql +++ b/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql @@ -89,8 +89,7 @@ CREATE TABLE IF NOT EXISTS `tsnmp_filter` ( -- ----------------------------------------------------- -- Table `talert_templates` -- ----------------------------------------------------- -ALTER TABLE `talert_templates` MODIFY COLUMN `type` ENUM ('regex', 'max_min', 'max', 'min', 'equal', 'not_equal', 'warning', 'critica -l', 'onchange', 'unknown'); +ALTER TABLE `talert_templates` MODIFY COLUMN `type` ENUM ('regex', 'max_min', 'max', 'min', 'equal', 'not_equal', 'warning', 'critical', 'onchange', 'unknown'); ALTER TABLE trecon_task ADD `snmp_community` varchar(64) NOT NULL default 'public';