9 lines
214 B
MySQL
9 lines
214 B
MySQL
|
ALTER TABLE icinga_service
|
||
|
ADD COLUMN service_set_id integer DEFAULT NULL;
|
||
|
|
||
|
DROP TABLE icinga_service_set_service;
|
||
|
|
||
|
INSERT INTO director_schema_migration
|
||
|
(schema_version, migration_time)
|
||
|
VALUES (121, NOW());
|