Skip to content

Commit

Permalink
chore: add migration for release-plans-definitions that removes fk on…
Browse files Browse the repository at this point in the history
… users(id) (#8614)
  • Loading branch information
daveleek authored Oct 31, 2024
1 parent b8a4fbd commit 7f5d273
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
exports.up = function(db, cb) {
db.runSql(`
ALTER TABLE release_plan_definitions DROP CONSTRAINT release_plan_definitions_created_by_user_id_fkey;
CREATE INDEX idx_release_plan_definitions_created_by_user_id ON release_plan_definitions (created_by_user_id);
`, cb)
};

exports.down = function(db, cb) {
db.runSql(`
ALTER TABLE release_plan_definitions ADD CONSTRAINT release_plan_definitions_created_by_user_id_fkey FOREIGN KEY (created_by_user_id) REFERENCES users(id);
DROP INDEX idx_release_plan_definitions_created_by_user_id;
`, cb);
};

0 comments on commit 7f5d273

Please sign in to comment.