Thomas Gelf 989ac534ab schema/pgsql: allow to delete import sources...
...with history import runs

fixes #11972
2016-09-23 17:36:34 +00:00

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());