From 3055dd215164f79652678b2ad2d0a76ba2713788 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Mon, 13 Jun 2022 15:15:43 -0500 Subject: [PATCH] Replace SERIAL with INT AUTO_INCREMENT (SERIAL stopped working in this h2 update?) --- src/test/resources/prime-test-database.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/resources/prime-test-database.sql b/src/test/resources/prime-test-database.sql index 07bb1dd6..d95d660b 100644 --- a/src/test/resources/prime-test-database.sql +++ b/src/test/resources/prime-test-database.sql @@ -22,7 +22,7 @@ DROP TABLE IF EXISTS person; CREATE TABLE person ( - id SERIAL, + id INT AUTO_INCREMENT, create_date TIMESTAMP DEFAULT now(), modify_date TIMESTAMP DEFAULT now(),