Changed 'post_process' format from tnetwork_component. Ticket #1283.
This commit is contained in:
parent
16c13ac17e
commit
99a7108547
|
@ -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 `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 `post_process`= 0.000000115740741 WHERE `id_nc`=53;
|
||||||
UPDATE FROM `network_component` SET `unit`= 'day' 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;
|
||||||
|
|
|
@ -707,7 +707,7 @@ CREATE TABLE IF NOT EXISTS `tnetwork_component` (
|
||||||
`custom_string_3` text,
|
`custom_string_3` text,
|
||||||
`custom_integer_1` int(10) default 0,
|
`custom_integer_1` int(10) default 0,
|
||||||
`custom_integer_2` 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,
|
`unit` text,
|
||||||
`wizard_level` enum('basic','advanced','nowizard') default 'nowizard',
|
`wizard_level` enum('basic','advanced','nowizard') default 'nowizard',
|
||||||
`macros` text,
|
`macros` text,
|
||||||
|
|
Loading…
Reference in New Issue