mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 04:59:06 +01:00
15 lines
475 B
TypeScript
15 lines
475 B
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
export class userLang1613181457597 implements MigrationInterface {
|
|
constructor() {
|
|
this.name = "userLang1613181457597";
|
|
}
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "user_profile" ADD "lang" character varying(32)`,
|
|
);
|
|
}
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "lang"`);
|
|
}
|
|
}
|