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:
ramonn 2012-10-29 18:41:20 +00:00
parent 4cb272f934
commit ab836ed3f8
4 changed files with 16 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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