2024-04-07 05:38:52 +02:00
|
|
|
import type { MigrationInterface, QueryRunner } from "typeorm";
|
2024-03-03 05:20:32 +01:00
|
|
|
|
|
|
|
export class deeplIntegration21629778475000 implements MigrationInterface {
|
|
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "meta" ADD "deeplIsPro" boolean NOT NULL DEFAULT false`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
|
|
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "deeplIsPro"`);
|
|
|
|
}
|
|
|
|
}
|