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