From 78392e56fe35fd5184c7a92e72ba446dcdca7267 Mon Sep 17 00:00:00 2001 From: Esteban Sanchez Date: Fri, 23 Mar 2007 12:35:50 +0000 Subject: [PATCH] =?UTF-8?q?2007-03-23=20=20Esteban=20S=C3=A1nchez=20=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * pandoradb.sql: Default value of flag field in tagente_module changed to 1, so the module is forced to be executed the first time. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@401 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/pandoradb.sql | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 489f67be25..b2dcf112a3 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2007-03-23 Esteban Sánchez + + * pandoradb.sql: Default value of flag field in tagente_module changed + to 1, so the module is forced to be executed the first time. + 2007-03-19 Raul Mateos * pandoradb.sql, pandoradb_data.sql: Solve small problem in last commit diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 7cd6c38c75..cdb2a1c385 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -245,7 +245,7 @@ CREATE TABLE `tagente_modulo` ( `snmp_oid` varchar(255) default '0', `ip_target` varchar(100) default '', `id_module_group` int(4) unsigned default '0', - `flag` tinyint(3) unsigned default '0', + `flag` tinyint(3) unsigned default '1', PRIMARY KEY (`id_agente_modulo`), KEY `tam_agente` (`id_agente`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;