mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 01:11:32 +03:00
16 lines
726 B
TypeScript
16 lines
726 B
TypeScript
|
|
import { MigrationInterface, QueryRunner } from "typeorm"
|
||
|
|
|
||
|
|
export class AddPersonFaceAssetId1693833336881 implements MigrationInterface {
|
||
|
|
|
||
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
||
|
|
await queryRunner.query(`ALTER TABLE "person" ADD "faceAssetId" uuid`);
|
||
|
|
await queryRunner.query(`ALTER TABLE "person" ADD CONSTRAINT "FK_2bbabe31656b6778c6b87b61023" FOREIGN KEY ("faceAssetId") REFERENCES "assets"("id") ON DELETE SET NULL ON UPDATE NO ACTION`);
|
||
|
|
}
|
||
|
|
|
||
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
||
|
|
await queryRunner.query(`ALTER TABLE "person" DROP CONSTRAINT "FK_2bbabe31656b6778c6b87b61023"`);
|
||
|
|
await queryRunner.query(`ALTER TABLE "person" DROP COLUMN "faceAssetId"`);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|