|
|
 |
« on: February 03, 2012, 02:00:02 PM » |
|
Revision: 5486 http://pandora.svn.sourceforge.net/pandora/?rev=5486&view=revAuthor: mdtrooper Date: 2012-02-03 12:43:22 +0000 (Fri, 03 Feb 2012) Log Message: ----------- 2012-02-03 Miguel de Dios
* pandoradb.sql, extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql: change the size of the field "post_process" in the tables "tagente_modulo" and "tnetwork_component".
Fixes: #3483814
Modified Paths: -------------- trunk/pandora_console/ChangeLog trunk/pandora_console/extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql trunk/pandora_console/pandoradb.sql
Modified: trunk/pandora_console/ChangeLog =================================================================== --- trunk/pandora_console/ChangeLog 2012-02-03 12:33:45 UTC (rev 5485) +++ trunk/pandora_console/ChangeLog 2012-02-03 12:43:22 UTC (rev 5486) @@ -1,3 +1,11 @@ +2012-02-03 Miguel de Dios + + * pandoradb.sql, extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql: change the + size of the field "post_process" in the tables "tagente_modulo" and + "tnetwork_component". + + Fixes: #3483814 + 2012-02-03 Ramon Novoa
* pandoradb_data.sql,
Modified: trunk/pandora_console/extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql =================================================================== --- trunk/pandora_console/extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql 2012-02-03 12:33:45 UTC (rev 5485) +++ trunk/pandora_console/extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql 2012-02-03 12:43:22 UTC (rev 5486) @@ -114,4 +114,9 @@ -- Table `tagente_modulo` -- ----------------------------------------------------- ALTER TABLE `tagente_modulo` ADD COLUMN `module_ff_interval` int(4) unsigned default '0'; +ALTER TABLE `tagente_modulo` CHANGE COLUMN `post_process` `post_process` double(18,5) default NULL;
+-- ----------------------------------------------------- +-- Table `tnetwork_component` +-- ----------------------------------------------------- +ALTER TABLE `tnetwork_component` CHANGE COLUMN `post_process` `post_process` double(18,5) default NULL;
Modified: trunk/pandora_console/pandoradb.sql =================================================================== --- trunk/pandora_console/pandoradb.sql 2012-02-03 12:33:45 UTC (rev 5485) +++ trunk/pandora_console/pandoradb.sql 2012-02-03 12:43:22 UTC (rev 5486) @@ -169,7 +169,7 @@ `plugin_pass` text default '', `plugin_parameter` text, `id_plugin` int(10) default '0', - `post_process` double(18,13) default NULL, + `post_process` double(18,5) default NULL, `prediction_module` bigint(14) default '0', `max_timeout` int(4) unsigned default '0', `custom_id` varchar(255) default '', @@ -566,7 +566,7 @@ `custom_string_3` text default '', `custom_integer_1` int(10) default 0, `custom_integer_2` int(10) default 0, - `post_process` double(18,13) default 0, + `post_process` double(18,5) default 0, PRIMARY KEY (`id_nc`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
------------------------------------------------------------------------------ Try before you buy = See our experts in action! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-dev2 _______________________________________________ Pandora-commits mailing list Pandora-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/pandora-commits
|