2023-03-04 14:16:20 +00:00
|
|
|
export class DriveComment1677935903517 {
|
2023-04-07 01:56:46 +00:00
|
|
|
name = "DriveComment1677935903517";
|
2023-03-04 14:16:20 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
async up(queryRunner) {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "drive_file" ALTER "comment" TYPE character varying(8192)`,
|
|
|
|
);
|
|
|
|
}
|
2023-03-04 14:16:20 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
async down(queryRunner) {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "drive_file" ALTER "comment" TYPE character varying(512)`,
|
|
|
|
);
|
|
|
|
}
|
2023-03-04 14:16:20 +00:00
|
|
|
}
|