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); -}