mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-28 16:24:05 +02:00
parent
e63870add2
commit
bacea2eeaa
9
schema/mysql-migrations/upgrade_184.sql
Normal file
9
schema/mysql-migrations/upgrade_184.sql
Normal file
@ -0,0 +1,9 @@
|
||||
ALTER TABLE branched_icinga_notification
|
||||
ADD COLUMN users_var VARCHAR(255) DEFAULT NULL AFTER zone;
|
||||
|
||||
ALTER TABLE branched_icinga_notification
|
||||
ADD COLUMN user_groups_var VARCHAR(255) DEFAULT NULL AFTER users_var;
|
||||
|
||||
INSERT INTO director_schema_migration
|
||||
(schema_version, migration_time)
|
||||
VALUES (184, NOW());
|
@ -2353,6 +2353,8 @@ CREATE TABLE branched_icinga_notification (
|
||||
command VARCHAR(255) DEFAULT NULL,
|
||||
period VARCHAR(255) DEFAULT NULL,
|
||||
zone VARCHAR(255) DEFAULT NULL,
|
||||
users_var VARCHAR(255) DEFAULT NULL,
|
||||
user_groups_var VARCHAR(255) DEFAULT NULL,
|
||||
assign_filter TEXT DEFAULT NULL,
|
||||
|
||||
states TEXT DEFAULT NULL,
|
||||
@ -2441,4 +2443,4 @@ CREATE TABLE branched_icinga_dependency (
|
||||
|
||||
INSERT INTO director_schema_migration
|
||||
(schema_version, migration_time)
|
||||
VALUES (183, NOW());
|
||||
VALUES (184, NOW());
|
||||
|
9
schema/pgsql-migrations/upgrade_184.sql
Normal file
9
schema/pgsql-migrations/upgrade_184.sql
Normal file
@ -0,0 +1,9 @@
|
||||
ALTER TABLE branched_icinga_notification
|
||||
ADD COLUMN users_var character varying(255) DEFAULT NULL;
|
||||
|
||||
ALTER TABLE branched_icinga_notification
|
||||
ADD COLUMN user_groups_var character varying(255) DEFAULT NULL;
|
||||
|
||||
INSERT INTO director_schema_migration
|
||||
(schema_version, migration_time)
|
||||
VALUES (184, NOW());
|
@ -2686,6 +2686,8 @@ CREATE TABLE branched_icinga_notification (
|
||||
command character varying(255) DEFAULT NULL,
|
||||
period character varying(255) DEFAULT NULL,
|
||||
zone character varying(255) DEFAULT NULL,
|
||||
users_var character varying(255) DEFAULT NULL,
|
||||
user_groups_var character varying(255) DEFAULT NULL,
|
||||
assign_filter text DEFAULT NULL,
|
||||
|
||||
states TEXT DEFAULT NULL,
|
||||
@ -2780,4 +2782,4 @@ CREATE INDEX branched_dependency_search_object_name ON branched_icinga_dependenc
|
||||
|
||||
INSERT INTO director_schema_migration
|
||||
(schema_version, migration_time)
|
||||
VALUES (183, NOW());
|
||||
VALUES (184, NOW());
|
||||
|
Loading…
x
Reference in New Issue
Block a user