summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1613181457597-user-lang.js
blob: d2cd06848ec4ee7f680553c53d220537495deeec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class userLang1613181457597 {
    constructor() {
        this.name = 'userLang1613181457597';
    }
    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "user_profile" ADD "lang" character varying(32)`);
    }
    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "lang"`);
    }
}