mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-12 04:57:30 -07:00
0c9a52940f
Resolve #6559
14 lines
488 B
TypeScript
14 lines
488 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class blurhash1595075960584 implements MigrationInterface {
|
|
name = 'blurhash1595075960584'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "drive_file" ADD "blurhash" character varying(128)`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "drive_file" DROP COLUMN "blurhash"`);
|
|
}
|
|
|
|
}
|