summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2024-08-14 11:07:18 -0400
committerGitHub <noreply@github.com>2024-08-14 11:07:18 -0400
commitdcffccb6870cb3a7751902a0ea5680425f4c9d89 (patch)
tree5b26e55bb419800587b5c020a3c50f05ce28db6f /src
parentMerge pull request #1166 from spacebarchat/dependabot/npm_and_yarn/follow-red... (diff)
downloadserver-ts-dcffccb6870cb3a7751902a0ea5680425f4c9d89.tar.xz
Update 1723644478176-webhookSourceChannel.ts
Diffstat (limited to 'src')
-rw-r--r--src/util/migration/postgres/1723644478176-webhookSourceChannel.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/migration/postgres/1723644478176-webhookSourceChannel.ts b/src/util/migration/postgres/1723644478176-webhookSourceChannel.ts

index babcf488c..63ce961fb 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<void> { 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",