From 5b5b44194d02ae003752e327a24ddf3e3063a33e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20M=C3=B6rling?= Date: Wed, 27 May 2026 12:40:22 +0200 Subject: [PATCH] Fix V7 dev seed for H2 compatibility. Remove PostgreSQL-only ON CONFLICT so Flyway succeeds in tests and local H2. Co-authored-by: Cursor --- .../resources/db/dev-migration/V7__seed_processing_order.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/main/resources/db/dev-migration/V7__seed_processing_order.sql b/backend/src/main/resources/db/dev-migration/V7__seed_processing_order.sql index d652424..2160a7e 100644 --- a/backend/src/main/resources/db/dev-migration/V7__seed_processing_order.sql +++ b/backend/src/main/resources/db/dev-migration/V7__seed_processing_order.sql @@ -10,5 +10,4 @@ VALUES ( NULL, TIMESTAMP '2026-05-16 09:00:00', TIMESTAMP '2026-05-16 09:00:00' -) -ON CONFLICT (id) DO NOTHING; +);