Standard Output
2025-03-12 07:26:40 DEBUG DDLDeployer create table "Element"(id bigint GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) not null, unique (id))
2025-03-12 07:26:40 DEBUG DDLDeployer create table Question(label varchar(255), id bigint not null, unique (id))
2025-03-12 07:26:40 DEBUG DDLDeployer create table Part(name varchar(255), id bigint not null, unique (id))
2025-03-12 07:26:40 DEBUG DDLDeployer alter table Question add constraint FK_Question_id_Element_id foreign key(id) reference
...[truncated 52 chars]...
r alter table Part add constraint FK_Part_id_Element_id foreign key(id) references "Element"(id)
2025-03-12 07:26:40 DEBUG SQLOperation Batching statement 1 times
2025-03-12 07:26:40 TRACE SQLOperation insert into "Element"(id) values (default) | {1={}}
2025-03-12 07:26:40 DEBUG SQLOperation Batching statement 1 times
2025-03-12 07:26:40 TRACE SQLOperation insert into Question(label, id) values (?, ?) | {1={Question.id=1, Question.label=What's the answer to Life, the Universe and Everything ?}}