Replace SERIAL with INT AUTO_INCREMENT (SERIAL stopped working in this h2 update?)

This commit is contained in:
2022-06-13 15:15:43 -05:00
parent e60aeedf58
commit 3055dd2151

View File

@ -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(),