Files
java-tutorials/hibernate5/src/test/resources/lifecycle-init.sql
T
bungrudi 3f2271f51b BAEL-2043: An Intro to Hibernate Entity Lifecycle (#4960)
* "An Intro to Hibernate Entity Lifecycle"

"An Intro to Hibernate Entity Lifecycle"
by Rudi

* Revision from Predrag's feedback

* Another revision from Predrag's feedback

* Another feedback.
2018-08-15 15:23:19 +02:00

25 lines
536 B
SQL

create sequence hibernate_sequence start with 1 increment by 1;
create table Football_Player (
id bigint not null,
name varchar(255),
primary key (id)
);
insert into
Football_Player
(name, id)
values
('Cristiano Ronaldo', next value for hibernate_sequence);
insert into
Football_Player
(name, id)
values
('Lionel Messi', next value for hibernate_sequence);
insert into
Football_Player
(name, id)
values
('Gigi Buffon', next value for hibernate_sequence);