iceshrimp-161sh/packages/backend/src/migration/1613181457597-user-lang.ts

15 lines
475 B
TypeScript
Raw Normal View History

import { MigrationInterface, QueryRunner } from "typeorm";
export class userLang1613181457597 implements MigrationInterface {
2023-04-07 03:56:46 +02:00
constructor() {
this.name = "userLang1613181457597";
}
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)`,
);
}
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
}