2023-10-13 18:17:29 +02:00
|
|
|
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
|
|
export class userLang1613181457597 implements MigrationInterface {
|
2023-04-07 03:56:46 +02:00
|
|
|
constructor() {
|
|
|
|
this.name = "userLang1613181457597";
|
|
|
|
}
|
2023-10-13 18:17:29 +02:00
|
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
2023-04-07 03:56:46 +02:00
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "user_profile" ADD "lang" character varying(32)`,
|
|
|
|
);
|
|
|
|
}
|
2023-10-13 18:17:29 +02:00
|
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
2023-04-07 03:56:46 +02:00
|
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "lang"`);
|
|
|
|
}
|
2021-11-11 18:02:25 +01:00
|
|
|
}
|