increase image description to 2048

This commit is contained in:
Puniko 2022-09-17 10:49:07 +02:00
parent 6930a7e3e6
commit 21ad9db806

View file

@ -0,0 +1,14 @@
export class resizeCommentsDriveFile1663399074403 {
constructor() {
this.name = 'resizeCommentsDriveFile1663399074403';
}
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "drive_file" ALTER COLUMN "comment" TYPE character varying(2048)`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "drive_file" ALTER COLUMN "comment" TYPE character varying(512)`);
}
}