summaryrefslogtreecommitdiff
path: root/migration/1586708940386-pageAiScript.ts
blob: fdd6e76b9be2ae429c109e942556be27b7a100da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {MigrationInterface, QueryRunner} from "typeorm";

export class pageAiScript1586708940386 implements MigrationInterface {
    name = 'pageAiScript1586708940386'

    public async up(queryRunner: QueryRunner): Promise<void> {
        await queryRunner.query(`ALTER TABLE "page" ADD "script" character varying(16384) NOT NULL DEFAULT ''`, undefined);
    }

    public async down(queryRunner: QueryRunner): Promise<void> {
        await queryRunner.query(`ALTER TABLE "page" DROP COLUMN "script"`, undefined);
    }

}