mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-13 00:44:25 +02:00
12 lines
290 B
SQL
12 lines
290 B
SQL
ALTER TABLE import_run
|
|
DROP CONSTRAINT import_run_source,
|
|
ADD CONSTRAINT import_run_source
|
|
FOREIGN KEY (source_id)
|
|
REFERENCES import_source (id)
|
|
ON DELETE CASCADE
|
|
ON UPDATE RESTRICT;
|
|
|
|
INSERT INTO director_schema_migration
|
|
(schema_version, migration_time)
|
|
VALUES (111, NOW());
|