mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
fix: remove stray migration (#28565)
This commit is contained in:
parent
78ac0ade01
commit
0975b1599c
1 changed files with 0 additions and 9 deletions
|
|
@ -1,9 +0,0 @@
|
|||
import { Kysely, sql } from 'kysely';
|
||||
|
||||
export async function up(db: Kysely<any>): Promise<void> {
|
||||
await sql`ALTER TABLE "workflow" ADD "updateId" uuid NOT NULL DEFAULT immich_uuid_v7();`.execute(db);
|
||||
}
|
||||
|
||||
export async function down(db: Kysely<any>): Promise<void> {
|
||||
await sql`ALTER TABLE "workflow" DROP COLUMN "updateId";`.execute(db);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue