Skip to content

Commit

Permalink
fix: Set comment to NULL instead of Denormalized
Browse files Browse the repository at this point in the history
  • Loading branch information
Marie authored Jun 11, 2024
1 parent 9849aab commit b2da70a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class ChannelIdDenormalizedForMiPoll1716129964060 {

async down(queryRunner) {
await queryRunner.query(`DROP INDEX "public"."IDX_c1240fcc9675946ea5d6c2860e"`);
await queryRunner.query(`COMMENT ON COLUMN "poll"."channelId" IS '[Denormalized]'`);
await queryRunner.query(`COMMENT ON COLUMN "poll"."channelId" IS NULL`);
await queryRunner.query(`ALTER TABLE "poll" DROP COLUMN "channelId"`);
}
}

0 comments on commit b2da70a

Please sign in to comment.