icingaweb2-module-director/schema/mysql-migrations/upgrade_166.sql

22 lines
381 B
SQL

ALTER TABLE sync_rule MODIFY object_type enum(
'host',
'service',
'command',
'user',
'hostgroup',
'servicegroup',
'usergroup',
'datalistEntry',
'endpoint',
'zone',
'timePeriod',
'serviceSet',
'scheduledDowntime',
'notification',
'dependency'
) NOT NULL;
INSERT INTO director_schema_migration
(schema_version, migration_time)
VALUES (166, NOW());