summaryrefslogtreecommitdiffstats
path: root/schema/pgsql-migrations/upgrade_142.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/pgsql-migrations/upgrade_142.sql')
-rw-r--r--schema/pgsql-migrations/upgrade_142.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/schema/pgsql-migrations/upgrade_142.sql b/schema/pgsql-migrations/upgrade_142.sql
new file mode 100644
index 0000000..5b0c1f3
--- /dev/null
+++ b/schema/pgsql-migrations/upgrade_142.sql
@@ -0,0 +1,13 @@
+ALTER TABLE import_run
+ DROP CONSTRAINT import_run_source;
+
+ALTER TABLE import_run
+ 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 (142, NOW());