Add apply_for migrations in schema
This commit is contained in:
parent
3e30d34098
commit
0fe47f9919
|
@ -557,6 +557,7 @@ CREATE TABLE icinga_service (
|
|||
icon_image VARCHAR(255) DEFAULT NULL,
|
||||
icon_image_alt VARCHAR(255) DEFAULT NULL,
|
||||
use_agent ENUM('y', 'n') DEFAULT NULL,
|
||||
apply_for VARCHAR(255) DEFAULT NULL,
|
||||
use_var_overrides ENUM('y', 'n') DEFAULT NULL,
|
||||
PRIMARY KEY (id),
|
||||
UNIQUE KEY object_key (object_name, host_id),
|
||||
|
|
|
@ -700,6 +700,7 @@ CREATE TABLE icinga_service (
|
|||
icon_image character varying(255) DEFAULT NULL,
|
||||
icon_image_alt character varying(255) DEFAULT NULL,
|
||||
use_agent enum_boolean DEFAULT NULL,
|
||||
apply_for character varying(255) DEFAULT NULL,
|
||||
use_var_overrides enum_boolean DEFAULT NULL,
|
||||
PRIMARY KEY (id),
|
||||
-- UNIQUE INDEX object_name (object_name, zone_id),
|
||||
|
|
Loading…
Reference in New Issue