Minor fixes

This commit is contained in:
fbsanchez 2018-07-04 19:47:10 +02:00
parent c800061bc2
commit fb0800d375
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ CREATE TABLE `tautoconfig` (
CREATE TABLE `tautoconfig_rules` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`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',
`type` enum('alias','ip-range','group','os','custom-field','script') DEFAULT 'alias',
`value` text,

View File

@ -1685,7 +1685,7 @@ CREATE TABLE IF NOT EXISTS `tautoconfig` (
CREATE TABLE IF NOT EXISTS `tautoconfig_rules` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`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',
`type` enum('alias','ip-range','group','os','custom-field','script') DEFAULT 'alias',
`value` text,

View File

@ -3212,7 +3212,7 @@ CREATE TABLE IF NOT EXISTS `tautoconfig` (
CREATE TABLE IF NOT EXISTS `tautoconfig_rules` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`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',
`type` enum('alias','ip-range','group','os','custom-field','script') DEFAULT 'alias',
`value` text,