2014-06-04 Sergio Martin <sergio.martin@artica.es>

* 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



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10101 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2014-06-04 07:05:33 +00:00
parent b3e77bd21c
commit 1d8d749872
4 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2014-06-04 Sergio Martin <sergio.martin@artica.es>
* 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 <sergio.martin@artica.es>
* include/styles/pandora.css

View File

@ -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';

View File

@ -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;

View File

@ -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;