Standard Output
2026-06-22 13:00:56 DEBUG DDLDeployer create table City(id int not null, name varchar(255), countryId int, unique (id))
2026-06-22 13:00:56 DEBUG DDLDeployer create table Country(id int not null, name varchar(255), description varchar(255), unique (id))
2026-06-22 13:00:56 DEBUG DDLDeployer alter table City add constraint FK_City_countryId_Country_id foreign key(countryId) references Country(id)