diff options
Diffstat (limited to '')
-rw-r--r-- | schema/mysql-migrations/upgrade_74.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/schema/mysql-migrations/upgrade_74.sql b/schema/mysql-migrations/upgrade_74.sql new file mode 100644 index 0000000..382f937 --- /dev/null +++ b/schema/mysql-migrations/upgrade_74.sql @@ -0,0 +1,14 @@ + +ALTER TABLE icinga_service + DROP FOREIGN KEY icinga_host; + +ALTER TABLE icinga_service + ADD CONSTRAINT icinga_service_host + FOREIGN KEY host (host_id) + REFERENCES icinga_host (id) + ON DELETE CASCADE + ON UPDATE CASCADE; + +INSERT INTO director_schema_migration + SET migration_time = NOW(), + schema_version = 74; |