summaryrefslogtreecommitdiff
path: root/migration/1613181457597-user-lang.ts
blob: ac1fc88c998501be554455feb0fa875ec782c535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {MigrationInterface, QueryRunner} from "typeorm";

export class userLang1613181457597 implements MigrationInterface {
    name = 'userLang1613181457597'

    public async up(queryRunner: QueryRunner): Promise<void> {
        await queryRunner.query(`ALTER TABLE "user_profile" ADD "lang" character varying(32)`);
    }

    public async down(queryRunner: QueryRunner): Promise<void> {
        await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "lang"`);
    }

}