mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-24 18:29:03 +00:00
5 lines
100 B
SQL
5 lines
100 B
SQL
CREATE TABLE FOO (
|
|
id INTEGER GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
name VARCHAR(30)
|
|
);
|