mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
0e4a111f81
Resolve #7779
15 lines
571 B
JavaScript
15 lines
571 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
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);
|
|
}
|
|
}
|
|
exports.logMessageLength1622681548499 = logMessageLength1622681548499;
|