Minor fixes
This commit is contained in:
parent
c800061bc2
commit
fb0800d375
|
@ -22,7 +22,7 @@ CREATE TABLE `tautoconfig` (
|
||||||
CREATE TABLE `tautoconfig_rules` (
|
CREATE TABLE `tautoconfig_rules` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`id_autoconfig` int(10) unsigned NOT NULL,
|
`id_autoconfig` int(10) unsigned NOT NULL,
|
||||||
`order_by` int(11) NOT NULL DEFAULT '0',
|
`order` int(11) NOT NULL DEFAULT '0',
|
||||||
`operator` enum('AND','OR') DEFAULT 'OR',
|
`operator` enum('AND','OR') DEFAULT 'OR',
|
||||||
`type` enum('alias','ip-range','group','os','custom-field','script') DEFAULT 'alias',
|
`type` enum('alias','ip-range','group','os','custom-field','script') DEFAULT 'alias',
|
||||||
`value` text,
|
`value` text,
|
||||||
|
|
|
@ -1685,7 +1685,7 @@ CREATE TABLE IF NOT EXISTS `tautoconfig` (
|
||||||
CREATE TABLE IF NOT EXISTS `tautoconfig_rules` (
|
CREATE TABLE IF NOT EXISTS `tautoconfig_rules` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`id_autoconfig` int(10) unsigned NOT NULL,
|
`id_autoconfig` int(10) unsigned NOT NULL,
|
||||||
`order_by` int(11) NOT NULL DEFAULT '0',
|
`order` int(11) NOT NULL DEFAULT '0',
|
||||||
`operator` enum('AND','OR') DEFAULT 'OR',
|
`operator` enum('AND','OR') DEFAULT 'OR',
|
||||||
`type` enum('alias','ip-range','group','os','custom-field','script') DEFAULT 'alias',
|
`type` enum('alias','ip-range','group','os','custom-field','script') DEFAULT 'alias',
|
||||||
`value` text,
|
`value` text,
|
||||||
|
|
|
@ -3212,7 +3212,7 @@ CREATE TABLE IF NOT EXISTS `tautoconfig` (
|
||||||
CREATE TABLE IF NOT EXISTS `tautoconfig_rules` (
|
CREATE TABLE IF NOT EXISTS `tautoconfig_rules` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`id_autoconfig` int(10) unsigned NOT NULL,
|
`id_autoconfig` int(10) unsigned NOT NULL,
|
||||||
`order_by` int(11) NOT NULL DEFAULT '0',
|
`order` int(11) NOT NULL DEFAULT '0',
|
||||||
`operator` enum('AND','OR') DEFAULT 'OR',
|
`operator` enum('AND','OR') DEFAULT 'OR',
|
||||||
`type` enum('alias','ip-range','group','os','custom-field','script') DEFAULT 'alias',
|
`type` enum('alias','ip-range','group','os','custom-field','script') DEFAULT 'alias',
|
||||||
`value` text,
|
`value` text,
|
||||||
|
|
Loading…
Reference in New Issue