summary refs log tree commit diff
path: root/src/util/migration/postgres
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/migration/postgres')
-rw-r--r--src/util/migration/postgres/1761113394664-delete-bot-users-without-an-application.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/migration/postgres/1761113394664-delete-bot-users-without-an-application.ts b/src/util/migration/postgres/1761113394664-delete-bot-users-without-an-application.ts

index cf770afca..d8e13fdc6 100644 --- a/src/util/migration/postgres/1761113394664-delete-bot-users-without-an-application.ts +++ b/src/util/migration/postgres/1761113394664-delete-bot-users-without-an-application.ts
@@ -6,5 +6,5 @@ export class DeleteBotUsersWithoutAnApplication1761113394664 implements Migratio await queryRunner.query(`DELETE FROM users WHERE bot = true AND id NOT IN (SELECT bot_user_id FROM applications);`); } - public async down(queryRunner: QueryRunner): Promise<void> {} + public async down(_: QueryRunner): Promise<void> {} }