From a451f92e67ee51136d4841fdda6befe8629a298b Mon Sep 17 00:00:00 2001 From: Rory& Date: Sat, 14 Mar 2026 03:59:28 +0100 Subject: properly mark unused params --- .../postgres/1761113394664-delete-bot-users-without-an-application.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util/migration/postgres') 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 {} + public async down(_: QueryRunner): Promise {} } -- cgit 1.5.1