that shouldn't exist

This commit is contained in:
MathMan05
2026-03-07 00:58:31 +01:00
committed by Rory&
parent 1472673a47
commit e56da3100b
@@ -1,13 +0,0 @@
import { MigrationInterface, QueryRunner } from "typeorm";
export class MemberFlags1772403866471 implements MigrationInterface {
name = "MemberFlags1772403866471";
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE "members" ADD "flags" integer NOT NULL DEFAULT '0'`);
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE "members" DROP COLUMN "flags"`);
}
}