https://build.spring.io/browse/INTSAMPLES-NIGHTLY-2239/ Having Hibernate and EclipseLink in the same application isn't a goal. On the other hand the sample must be concentrate on the Spring Integration, not a complexity brought by the Spring Boot auto-configuration override. * Remove the EclipseLink support from the JPA samples and rely only on the Hibernate auto-configuration * Remove an appropriate message from the README
6 lines
227 B
SQL
6 lines
227 B
SQL
drop table if EXISTS PEOPLE;
|
|
|
|
CREATE TABLE PEOPLE (id BIGINT generated by default as identity, name VARCHAR(255), CREATED_DATE_TIME TIMESTAMP, PRIMARY KEY (id));
|
|
|
|
CREATE SEQUENCE HIBERNATE_SEQUENCE START WITH 1 INCREMENT BY 1;
|