Changed 'post_process' format from tnetwork_component. Ticket #1283.

This commit is contained in:
Vanessa Gil 2014-09-18 12:38:59 +02:00
parent 16c13ac17e
commit 99a7108547
2 changed files with 6 additions and 1 deletions

View File

@ -257,3 +257,8 @@ DELETE FROM `tconfig` WHERE `token`='sla_period';
UPDATE FROM `network_component` SET `module_inteval`= 3600 WHERE `id_nc`=53;
UPDATE FROM `network_component` SET `post_process`= 0.000000115740741 WHERE `id_nc`=53;
UPDATE FROM `network_component` SET `unit`= 'day' WHERE `id_nc`=53;
-- ---------------------------------------------------------------------
-- Table `network_component`
-- ---------------------------------------------------------------------
ALTER TABLE `tnetwork_component` MODIFY COLUMN `post_process` DOUBLE(18,15) DEFAULT 0;

View File

@ -707,7 +707,7 @@ CREATE TABLE IF NOT EXISTS `tnetwork_component` (
`custom_string_3` text,
`custom_integer_1` int(10) default 0,
`custom_integer_2` int(10) default 0,
`post_process` double(18,5) default 0,
`post_process` double(18,15) default 0,
`unit` text,
`wizard_level` enum('basic','advanced','nowizard') default 'nowizard',
`macros` text,