mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* refactor: flatten infra folders * fix: database migrations * fix: test related import * fix: github actions workflow * chore: rename schemas to typesense-schemas
16 lines
610 B
TypeScript
16 lines
610 B
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
|
|
export class AddCaption1661011331242 implements MigrationInterface {
|
|
name = 'AddCaption1661011331242';
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "exif" ADD "description" text DEFAULT ''`);
|
|
await queryRunner.query(`ALTER TABLE "exif" ADD "fps" double precision`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "exif" DROP COLUMN "fps"`);
|
|
await queryRunner.query(`ALTER TABLE "exif" DROP COLUMN "description"`);
|
|
}
|
|
}
|