diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 3621ffa829..07a236b80f 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,12 @@ +2014-08-07 Alejandro Gallardo + + * pandoradb.sql, + extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql, + extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql, + extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql: + Modified the decimal precision of the column "post_process" + for the table 'tagente_modulo' (Ticket #1124). + 2014-08-06 Sancho Lerena * extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql, diff --git a/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql b/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql index 7bee1fd162..5516382577 100644 --- a/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql @@ -228,3 +228,9 @@ ALTER TABLE `tagente_estado` ADD COLUMN `ff_start_utimestamp` bigint(20) default -- Table `trecon_script` -- --------------------------------------------------------------------- DELETE FROM `trecon_script` WHERE id_recon_script=1; + +/* 2014/08/07 */ +-- --------------------------------------------------------------------- +-- Table `tagente_modulo` +-- --------------------------------------------------------------------- +ALTER TABLE tagente_modulo MODIFY COLUMN `post_process` double(18,15) default 0; \ No newline at end of file diff --git a/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql b/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql index ac80601149..72541bbd9a 100644 --- a/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql +++ b/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql @@ -216,3 +216,9 @@ ALTER TABLE tagente_estado ADD COLUMN ff_start_utimestamp NUMBER(10, 0) default -- Table trecon_script -- --------------------------------------------------------------------- DELETE FROM trecon_script WHERE id_recon_script=1; + +/* 2014/08/07 */ +-- --------------------------------------------------------------------- +-- Table `tagente_modulo` +-- --------------------------------------------------------------------- +ALTER TABLE tagente_modulo MODIFY COLUMN post_process NUMBER(18,15) default 0; \ No newline at end of file diff --git a/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql b/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql index 4984ac8e46..1dc1da9aa5 100644 --- a/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql +++ b/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql @@ -190,3 +190,9 @@ ALTER TABLE "tagente_estado" ADD COLUMN "ff_start_utimestamp" BIGINT default 0; -- Table trecon_script -- --------------------------------------------------------------------- DELETE FROM "trecon_script" WHERE "id_recon_script"=1; + +/* 2014/08/07 */ +-- --------------------------------------------------------------------- +-- Table `tagente_modulo` +-- --------------------------------------------------------------------- +ALTER TABLE "tagente_modulo" MODIFY COLUMN "post_process" NUMERIC(18,15) default 0; \ No newline at end of file diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 4330f2932e..889f809af1 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -203,7 +203,7 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` ( `plugin_pass` text, `plugin_parameter` text, `id_plugin` int(10) default '0', - `post_process` double(18,5) default 0, + `post_process` double(18,15) default 0, `prediction_module` bigint(14) default '0', `max_timeout` int(4) unsigned default '0', `max_retries` int(4) unsigned default '0',