Merge pull request #1358 from CyberL1/fix/delete-bots-with-no-applicaiton

chore: do a migration to delete bot users with no application
This commit is contained in:
Cyber 2025-10-22 08:18:53 +02:00 committed by GitHub
commit 840652f003
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,9 @@
import { MigrationInterface, QueryRunner } from "typeorm";
export class DeleteBotUsersWithoutAnApplication1761113394664 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
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> {}
}