2012-02-07 Dario Rodriguez <dario.rodriguez@artica.es>

* pandoradb.sql,
	extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql: Fixed an error with 
	weight field of custom graphs



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5502 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
darode 2012-02-07 09:47:51 +00:00
parent 0a858f2924
commit b234f31cff
3 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2012-02-07 Dario Rodriguez <dario.rodriguez@artica.es>
* pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql: Fixed an error with
weight field of custom graphs
2012-02-06 Ramon Novoa <rnovoa@artica.es>
* operation/netflow/nf_live_view.php: Fixed filter load ACL check.

View File

@ -120,3 +120,8 @@ ALTER TABLE `tagente_modulo` CHANGE COLUMN `post_process` `post_process` double(
-- Table `tnetwork_component`
-- -----------------------------------------------------
ALTER TABLE `tnetwork_component` CHANGE COLUMN `post_process` `post_process` double(18,5) default NULL;
-- -----------------------------------------------------
-- Table `tgraph_source` Alter table to allow negative values in weight
-- -----------------------------------------------------
ALTER TABLE tgraph_source MODIFY weight FLOAT(5,3) NOT NULL DEFAULT '0.000';

View File

@ -816,7 +816,7 @@ CREATE TABLE IF NOT EXISTS `tgraph_source` (
`id_gs` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
`id_graph` int(11) NOT NULL default 0,
`id_agent_module` int(11) NOT NULL default 0,
`weight` float(5,3) UNSIGNED NOT NULL DEFAULT 0,
`weight` float(5,3) NOT NULL DEFAULT 0,
PRIMARY KEY(`id_gs`)
) ENGINE = InnoDB DEFAULT CHARSET=utf8;