Added target_ip to policy_modules table
This commit is contained in:
parent
b9db37f663
commit
4d46470e96
|
@ -1265,6 +1265,7 @@ ALTER TABLE tlocal_component ADD COLUMN `dynamic_two_tailed` tinyint(1) unsigned
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
-- Table `tpolicy_module`
|
-- Table `tpolicy_module`
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
|
ALTER TABLE tpolicy_modules ADD COLUMN `ip_target`varchar(100) default '';
|
||||||
ALTER TABLE tpolicy_modules ADD COLUMN `dynamic_next` bigint(20) NOT NULL default '0';
|
ALTER TABLE tpolicy_modules ADD COLUMN `dynamic_next` bigint(20) NOT NULL default '0';
|
||||||
ALTER TABLE tpolicy_modules ADD COLUMN `dynamic_two_tailed` tinyint(1) unsigned default '0';
|
ALTER TABLE tpolicy_modules ADD COLUMN `dynamic_two_tailed` tinyint(1) unsigned default '0';
|
||||||
|
|
||||||
|
|
|
@ -2056,6 +2056,7 @@ CREATE TABLE IF NOT EXISTS `tpolicy_modules` (
|
||||||
`max` bigint(20) default '0',
|
`max` bigint(20) default '0',
|
||||||
`min` bigint(20) default '0',
|
`min` bigint(20) default '0',
|
||||||
`module_interval` int(4) unsigned default '0',
|
`module_interval` int(4) unsigned default '0',
|
||||||
|
`ip_target` varchar(100) default '',
|
||||||
`tcp_port` int(4) unsigned default '0',
|
`tcp_port` int(4) unsigned default '0',
|
||||||
`tcp_send` text default '',
|
`tcp_send` text default '',
|
||||||
`tcp_rcv` text default '',
|
`tcp_rcv` text default '',
|
||||||
|
|
Loading…
Reference in New Issue