mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-13 00:44:25 +02:00
8 lines
237 B
SQL
8 lines
237 B
SQL
CREATE TYPE enum_host_service AS ENUM('host', 'service');
|
|
|
|
ALTER TABLE icinga_notification ADD apply_to enum_host_service NULL DEFAULT NULL;
|
|
|
|
INSERT INTO director_schema_migration
|
|
(schema_version, migration_time)
|
|
VALUES (96, NOW());
|