summaryrefslogtreecommitdiffstats
path: root/schema/pgsql-migrations/upgrade_96.sql
blob: f96daa70300f3f502f4158b1a6673914a176ddf7 (plain)
1
2
3
4
5
6
7
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());