En succès
A duré 7 ms.
Standard Output
2024-09-16 21:03:58 DEBUG DDLDeployer create table Element(id bigint not null, unique (id))
2024-09-16 21:03:58 DEBUG DDLDeployer create table Part(name varchar(255), id bigint not null, unique (id))
2024-09-16 21:03:58 DEBUG DDLDeployer create table Question(label varchar(255), id bigint not null, unique (id))
2024-09-16 21:03:58 DEBUG DDLDeployer alter table Part add constraint FK_Part_id_Element_id foreign key(id) references Element(id)
2024-09-16 21:03:58 DEBUG DDLDeployer alter table Question add constraint FK_Question_id_Element_id foreign key(id) references Element(id)
2024-09-16 21:03:58 DEBUG SQLOperation Batching statement 1 times
2024-09-16 21:03:58 DEBUG SQLOperation insert into Element(id) values (?) | {1={Element.id=1}}
2024-09-16 21:03:58 DEBUG SQLOperation Batching statement 1 times
2024-09-16 21:03:58 DEBUG SQLOperation insert into Question(label, id) values (?, ?) | {1={Question.id=1, Question.label=What's the answer to Life, the Universe and Everything ?}}