mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
16 lines
511 B
TypeScript
16 lines
511 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class clipDescription1605408848373 implements MigrationInterface {
|
|
name = 'clipDescription1605408848373'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "clip" ADD "description" character varying(2048) DEFAULT null`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
|
|
await queryRunner.query(`ALTER TABLE "clip" DROP COLUMN "description"`);
|
|
}
|
|
|
|
}
|