Adjust IDENTITY in DDLs for H2 2.x compatibility

See gh-29200
This commit is contained in:
Henning Poettker
2022-01-08 13:59:58 +01:00
committed by Stephane Nicoll
parent 37c1f47902
commit e3d0f1feee
12 changed files with 22 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
CREATE TABLE FOO (
id INTEGER IDENTITY PRIMARY KEY,
id INTEGER GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
name VARCHAR(30)
);