mirror of
https://example.com
synced 2024-11-23 06:56:38 +09:00
16 lines
355 B
JavaScript
16 lines
355 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)`,
|
||
|
);
|
||
|
}
|
||
|
}
|