2014-08-07 Alejandro Gallardo <alejandro.gallardo@artica.es>
* 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). git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10388 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9a9cee5d92
commit
df12717958
|
@ -1,3 +1,12 @@
|
||||||
|
2014-08-07 Alejandro Gallardo <alejandro.gallardo@artica.es>
|
||||||
|
|
||||||
|
* 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 <slerena@artica.es>
|
2014-08-06 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
* extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
|
* 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`
|
-- Table `trecon_script`
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
DELETE FROM `trecon_script` WHERE id_recon_script=1;
|
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;
|
|
@ -216,3 +216,9 @@ ALTER TABLE tagente_estado ADD COLUMN ff_start_utimestamp NUMBER(10, 0) default
|
||||||
-- Table trecon_script
|
-- Table trecon_script
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
DELETE FROM trecon_script WHERE id_recon_script=1;
|
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;
|
|
@ -190,3 +190,9 @@ ALTER TABLE "tagente_estado" ADD COLUMN "ff_start_utimestamp" BIGINT default 0;
|
||||||
-- Table trecon_script
|
-- Table trecon_script
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
DELETE FROM "trecon_script" WHERE "id_recon_script"=1;
|
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;
|
|
@ -203,7 +203,7 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` (
|
||||||
`plugin_pass` text,
|
`plugin_pass` text,
|
||||||
`plugin_parameter` text,
|
`plugin_parameter` text,
|
||||||
`id_plugin` int(10) default '0',
|
`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',
|
`prediction_module` bigint(14) default '0',
|
||||||
`max_timeout` int(4) unsigned default '0',
|
`max_timeout` int(4) unsigned default '0',
|
||||||
`max_retries` int(4) unsigned default '0',
|
`max_retries` int(4) unsigned default '0',
|
||||||
|
|
Loading…
Reference in New Issue