Skip to content

Commit

Permalink
fix drop constraint migration on planning review
Browse files Browse the repository at this point in the history
  • Loading branch information
mhuseinov committed Mar 13, 2024
1 parent efc2034 commit 6776bc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class PlanningReviewsV21709662671997 implements MigrationInterface {
`ALTER TABLE "alcs"."planning_review" DROP COLUMN "type"`,
);
await queryRunner.query(
`ALTER TABLE "alcs"."planning_review" DROP CONSTRAINT "REL_03a05aa8fefbc2fc1cdf138d80"`,
`ALTER TABLE "alcs"."planning_review" DROP CONSTRAINT IF EXISTS "REL_03a05aa8fefbc2fc1cdf138d80"`,
);
await queryRunner.query(
`ALTER TABLE "alcs"."planning_review" DROP COLUMN "card_uuid"`,
Expand Down

0 comments on commit 6776bc7

Please sign in to comment.