diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 7c2ea7bf71..5bc2015aba 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2014-06-04 Sergio Martin + + * extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql + extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql + extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql: Added missed + field ff_timeout to tagente_modulo in migration scripts + 2014-06-03 Sergio Martin * include/styles/pandora.css 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 8d851fb1ee..401a0f26db 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 @@ -226,3 +226,9 @@ ALTER TABLE `tnews` ADD COLUMN `expire_timestamp` DATETIME NOT NULL DEFAULT 0; -- Table `tagente_estado` -- --------------------------------------------------------------------- ALTER TABLE `tagente_estado` ADD COLUMN `ff_start_utimestamp` bigint(20) default 0; + +/* 2014/06/04 */ +-- --------------------------------------------------------------------- +-- Table `tagente_modulo` +-- --------------------------------------------------------------------- +ALTER TABLE tagente_modulo ADD COLUMN `ff_timeout` int(4) unsigned default '0'; 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 fe37938621..039fe9841b 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 @@ -210,3 +210,10 @@ ALTER TABLE tnews ADD COLUMN expire_timestamp TIMESTAMP default NULL; -- Table `tagente_estado` -- --------------------------------------------------------------------- ALTER TABLE tagente_estado ADD COLUMN ff_start_utimestamp NUMBER(10, 0) default 0; + +/* 2014/06/04 */ +-- --------------------------------------------------------------------- +-- Table `tagente_modulo` +-- --------------------------------------------------------------------- +ALTER TABLE tagente_modulo ADD COLUMN ff_timeout INTEGER default 0; + 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 23a06b9497..c8f52b359a 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 @@ -184,3 +184,9 @@ ALTER TABLE "tnews" ADD COLUMN "expire_timestamp" TIMESTAMP without time zone de -- Table `tagente_estado` -- --------------------------------------------------------------------- ALTER TABLE "tagente_estado" ADD COLUMN "ff_start_utimestamp" BIGINT default 0; + +/* 2014/06/04 */ +-- --------------------------------------------------------------------- +-- Table `tagente_modulo` +-- --------------------------------------------------------------------- +ALTER TABLE "tagente_modulo" ADD COLUMN "ff_timeout" int(4) INTEGER default 0;