Files
2026-07-26 18:25:37 +09:00

10 lines
364 B
JavaScript

export class DriveComment1677935903517 {
name = "DriveComment1677935903517";
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "drive_file" ALTER "comment" TYPE character varying(8192)`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "drive_file" ALTER "comment" TYPE character varying(512)`);
}
}