13:30:16,515 DEBUG SQL:94 -
create table MATCH (
id bigint not null,
primary key (id)
) lock datarows
Hibernate:
create table MATCH (
id bigint not null,
primary key (id)
) lock datarows
13:30:16,661 INFO access:47 - HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6d75f68d] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode.
13:30:17,333 DEBUG SQL:94 -
create table Match_timeline (
Match_id bigint not null,
timeline int null,
timeline_KEY int not null,
primary key (Match_id, timeline_KEY)
) lock datarows
Hibernate:
create table Match_timeline (
Match_id bigint not null,
timeline int null,
timeline_KEY int not null,
primary key (Match_id, timeline_KEY)
) lock datarows
13:30:17,581 DEBUG SQL:94 -
alter table Match_timeline
add constraint FKo4eymwd6e6d337l2rexf0eguv
foreign key (Match_id)
references MATCH
Hibernate:
alter table Match_timeline
add constraint FKo4eymwd6e6d337l2rexf0eguv
foreign key (Match_id)
references MATCH