mirror of
https://github.com/immich-app/immich.git
synced 2025-06-23 15:30:51 -04:00
18 lines
523 B
TypeScript
18 lines
523 B
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
|
|
export class UpdateAssetTableWithWebpPath1653214255670 implements MigrationInterface {
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`
|
|
alter table assets
|
|
add column if not exists "webpPath" varchar default '';
|
|
`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`
|
|
alter table assets
|
|
drop column if exists "webpPath";
|
|
`);
|
|
}
|
|
}
|