mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Replace SERIAL with INT AUTO_INCREMENT (SERIAL stopped working in this h2 update?)
This commit is contained in:
@ -22,7 +22,7 @@
|
|||||||
DROP TABLE IF EXISTS person;
|
DROP TABLE IF EXISTS person;
|
||||||
CREATE TABLE person
|
CREATE TABLE person
|
||||||
(
|
(
|
||||||
id SERIAL,
|
id INT AUTO_INCREMENT,
|
||||||
create_date TIMESTAMP DEFAULT now(),
|
create_date TIMESTAMP DEFAULT now(),
|
||||||
modify_date TIMESTAMP DEFAULT now(),
|
modify_date TIMESTAMP DEFAULT now(),
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user