mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-12 16:34:26 +02:00
9 lines
237 B
SQL
9 lines
237 B
SQL
ALTER TABLE icinga_service
|
|
ADD COLUMN service_set_id INT(10) UNSIGNED DEFAULT NULL AFTER host_id;
|
|
|
|
DROP TABLE icinga_service_set_service;
|
|
|
|
INSERT INTO director_schema_migration
|
|
(schema_version, migration_time)
|
|
VALUES (121, NOW());
|