blob: 63adfc0c6d501f55cea0c8ffbbfb5b03256faf19 (
plain)
1
2
3
4
5
6
7
8
9
|
ALTER TABLE icinga_host
ADD COLUMN check_timeout smallint DEFAULT NULL;
ALTER TABLE icinga_service
ADD COLUMN check_timeout smallint DEFAULT NULL;
INSERT INTO director_schema_migration
(schema_version, migration_time)
VALUES (135, NOW());
|