From dcffccb6870cb3a7751902a0ea5680425f4c9d89 Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Wed, 14 Aug 2024 11:07:18 -0400 Subject: [PATCH] Update 1723644478176-webhookSourceChannel.ts --- .../migration/postgres/1723644478176-webhookSourceChannel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/migration/postgres/1723644478176-webhookSourceChannel.ts b/src/util/migration/postgres/1723644478176-webhookSourceChannel.ts index babcf488..63ce961f 100644 --- a/src/util/migration/postgres/1723644478176-webhookSourceChannel.ts +++ b/src/util/migration/postgres/1723644478176-webhookSourceChannel.ts @@ -5,7 +5,7 @@ export class WebhookSourceChannel1723644478176 implements MigrationInterface { public async up(queryRunner: QueryRunner): Promise { await queryRunner.query( - "ALTER TABLE webhooks ADD COLUMN source_channel_id VARCHAR(255) NULL DEFAULT NULL AFTER source_guild_id", + "ALTER TABLE webhooks ADD COLUMN source_channel_id VARCHAR(255) NULL DEFAULT NULL", ); await queryRunner.query( "ALTER TABLE webhooks ADD CONSTRAINT FK_d64f38834fa676f6caa4786ddd6 FOREIGN KEY (source_channel_id) REFERENCES channels (id) ON UPDATE NO ACTION ON DELETE CASCADE",