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

17 lines
495 B
TypeScript
Raw Normal View History

import { MigrationInterface, QueryRunner } from "typeorm";
export class logMessageLength1622681548499 implements MigrationInterface {
async up(queryRunner: QueryRunner): Promise<void> {
2023-04-07 03:56:46 +02:00
await queryRunner.query(
`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(2048)`,
undefined,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
2023-04-07 03:56:46 +02:00
await queryRunner.query(
`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(1024)`,
undefined,
);
}
2021-11-11 18:02:25 +01:00
}