hippofish/packages/backend/src/migration/1622681548499-log-message-length.ts

16 lines
495 B
TypeScript

import { MigrationInterface, QueryRunner } from "typeorm";
export class logMessageLength1622681548499 implements MigrationInterface {
async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(2048)`,
undefined,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(1024)`,
undefined,
);
}
}