mirror of
https://example.com
synced 2024-11-23 06:16:40 +09:00
18 lines
416 B
JavaScript
18 lines
416 B
JavaScript
|
export class logMessageLength1622681548499 {
|
||
|
constructor() {
|
||
|
this.name = "logMessageLength1622681548499";
|
||
|
}
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(
|
||
|
`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(2048)`,
|
||
|
undefined,
|
||
|
);
|
||
|
}
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(
|
||
|
`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(1024)`,
|
||
|
undefined,
|
||
|
);
|
||
|
}
|
||
|
}
|