mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 07:44:35 +02:00
Schema, allow certain autoconfigurations being disabled on MC environments
This commit is contained in:
parent
11dc01c0c8
commit
fcfb5e0d2a
@ -3,4 +3,6 @@ ALTER TABLE `tpolicy_queue` MODIFY COLUMN `progress` int(10) NOT NULL default '0
|
|||||||
CREATE INDEX `IDX_tservice_element` ON `tservice_element`(`id_service`,`id_agente_modulo`);
|
CREATE INDEX `IDX_tservice_element` ON `tservice_element`(`id_service`,`id_agente_modulo`);
|
||||||
ALTER TABLE tevent_response ADD COLUMN display_command tinyint(1) default 0;
|
ALTER TABLE tevent_response ADD COLUMN display_command tinyint(1) default 0;
|
||||||
|
|
||||||
|
ALTER TABLE `tautoconfig` ADD COLUMN `disabled` TINYINT DEFAULT 0;
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
@ -2185,6 +2185,7 @@ CREATE TABLE IF NOT EXISTS `tautoconfig` (
|
|||||||
`name` varchar(100) NOT NULL,
|
`name` varchar(100) NOT NULL,
|
||||||
`order` int(11) NOT NULL DEFAULT '0',
|
`order` int(11) NOT NULL DEFAULT '0',
|
||||||
`description` text,
|
`description` text,
|
||||||
|
`disabled` TINYINT,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user