mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
13 lines
527 B
TypeScript
13 lines
527 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class logMessageLength1622681548499 implements MigrationInterface {
|
|
name = 'logMessageLength1622681548499';
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(2048)`, undefined);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(1024)`, undefined);
|
|
}
|
|
}
|