2023-02-16 02:41:51 -05:00
|
|
|
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
|
|
|
|
|
|
|
|
export class AppleContentIdentifier1676437878377 implements MigrationInterface {
|
|
|
|
|
name = 'AppleContentIdentifier1676437878377';
|
|
|
|
|
|
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
|
|
|
await queryRunner.query(`ALTER TABLE "exif" ADD "livePhotoCID" character varying`);
|
|
|
|
|
await queryRunner.query(`CREATE INDEX "IDX_live_photo_cid" ON "exif" ("livePhotoCID") `);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
2024-09-03 21:20:21 -04:00
|
|
|
await queryRunner.query(`DROP INDEX "IDX_live_photo_cid"`);
|
2023-02-16 02:41:51 -05:00
|
|
|
await queryRunner.query(`ALTER TABLE "exif" DROP COLUMN "livePhotoCID"`);
|
|
|
|
|
}
|
|
|
|
|
}
|