Newer
Older
percord / src / util / migration / postgres / 1772404321400-MemberFlags.ts
@MathMan05 MathMan05 on 20 Mar 490 bytes a lot of small fixes
import { MigrationInterface, QueryRunner } from "typeorm";

export class MemberFlags1772404321400 implements MigrationInterface {
    name = "MemberFlags1772404321400";

    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"`);
    }
}