mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-17 08:08:15 +09:00
12 lines
365 B
JavaScript
12 lines
365 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)`);
|
||
|
}
|
||
|
}
|