summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1595075960584-blurhash.js
blob: f24d3722cf9f5c4191c52e09ccf7ca3e182b2460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class blurhash1595075960584 {
    constructor() {
        this.name = 'blurhash1595075960584';
    }
    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "drive_file" ADD "blurhash" character varying(128)`);
    }
    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "drive_file" DROP COLUMN "blurhash"`);
    }
}