iceshrimp/packages/backend/src/migration/1595075960584-blurhash.ts

15 lines
480 B
TypeScript

import { MigrationInterface, QueryRunner } from "typeorm";
export class blurhash1595075960584 implements MigrationInterface {
constructor() {
this.name = "blurhash1595075960584";
}
async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "drive_file" ADD "blurhash" character varying(128)`,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE "drive_file" DROP COLUMN "blurhash"`);
}
}