mirror of
https://git.boykissers.com/pawkey/pawkey-sk.git
synced 2025-12-20 04:04:16 +00:00
15 lines
524 B
TypeScript
15 lines
524 B
TypeScript
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);
|
|
}
|
|
|
|
}
|