2012-10-29 Ramon Novoa <rnovoa@artica.es>
* extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql, extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql: Move the number of retries for web modules from plugin_pass to max_retries. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7108 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
4cb272f934
commit
ab836ed3f8
|
@ -1,3 +1,10 @@
|
|||
2012-10-29 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
|
||||
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
|
||||
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql: Move the number
|
||||
of retries for web modules from plugin_pass to max_retries.
|
||||
|
||||
2012-10-29 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* extensions/update_manager.php: silenced the notice PHP message
|
||||
|
|
|
@ -158,6 +158,9 @@ ALTER TABLE `tagente_modulo` ADD COLUMN `warning_inverse` tinyint(1) unsigned de
|
|||
ALTER TABLE `tagente_modulo` ADD COLUMN `cron_interval` varchar(100) default '';
|
||||
ALTER TABLE `tagente_modulo` ADD COLUMN `max_retries` int(4) UNSIGNED NOT NULL default 0;
|
||||
|
||||
-- Move the number of retries for web modules from plugin_pass to max_retries
|
||||
UPDATE `tagente_modulo` SET max_retries=plugin_pass WHERE id_modulo=7;
|
||||
|
||||
------------------------------------------------------------------------
|
||||
-- Table `tnetwork_component`
|
||||
------------------------------------------------------------------------
|
||||
|
|
|
@ -305,6 +305,9 @@ ALTER TABLE tagente_modulo ADD (quiet NUMBER(5, 0) default 0 NOT NULL);
|
|||
ALTER TABLE tagente_modulo ADD (cron_interval VARCHAR2(100) DEFAULT '');
|
||||
ALTER TABLE tagente_modulo ADD (max_retries NUMBER(10, 0) default 0);
|
||||
|
||||
-- Move the number of retries for web modules from plugin_pass to max_retries
|
||||
UPDATE tagente_modulo SET max_retries=plugin_pass WHERE id_modulo=7;
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table tplugin
|
||||
-- -----------------------------------------------------
|
||||
|
|
|
@ -180,6 +180,9 @@ ALTER TABLE "tagente_modulo" ADD COLUMN "warning_inverse" SMALLINT NOT NULL defa
|
|||
ALTER TABLE "tagente_modulo" ADD COLUMN "cron_interval" varchar(100) default '';
|
||||
ALTER TABLE "tagente_modulo" ADD COLUMN "max_retries" INTEGER default 0;
|
||||
|
||||
-- Move the number of retries for web modules from plugin_pass to max_retries
|
||||
UPDATE "tagente_modulo" SET max_retries=plugin_pass WHERE id_modulo=7;
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table "tevent_filter"
|
||||
-- -----------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue