From 0975b1599c8dfb4a2f502b02f6845a541ec6d56b Mon Sep 17 00:00:00 2001 From: Daniel Dietzler <36593685+danieldietzler@users.noreply.github.com> Date: Fri, 22 May 2026 17:20:47 +0200 Subject: [PATCH] fix: remove stray migration (#28565) --- server/src/schema/migrations/1773175313374-Test.ts | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 server/src/schema/migrations/1773175313374-Test.ts diff --git a/server/src/schema/migrations/1773175313374-Test.ts b/server/src/schema/migrations/1773175313374-Test.ts deleted file mode 100644 index 03479a760c..0000000000 --- a/server/src/schema/migrations/1773175313374-Test.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Kysely, sql } from 'kysely'; - -export async function up(db: Kysely): Promise { - await sql`ALTER TABLE "workflow" ADD "updateId" uuid NOT NULL DEFAULT immich_uuid_v7();`.execute(db); -} - -export async function down(db: Kysely): Promise { - await sql`ALTER TABLE "workflow" DROP COLUMN "updateId";`.execute(db); -}