mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-24 19:07:32 -07:00
14 lines
480 B
TypeScript
14 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"`);
|
|
}
|
|
}
|