Standard Output
2026-05-19 05:26:22 DEBUG DDLDeployer create table Country(id int not null, name varchar(255), description varchar(255), presidentId int not null, unique (id))
2026-05-19 05:26:22 DEBUG DDLDeployer create table Person(id int not null, name varchar(255), unique (id))
2026-05-19 05:26:22 DEBUG DDLDeployer alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)