Standard Output
2024-12-14 12:46:05 DEBUG DDLDeployer create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-12-14 12:46:05 DEBUG DDLDeployer create table City(name varchar(255), id int not null, countryId int, unique (id))
2024-12-14 12:46:05 DEBUG DDLDeployer alter table City add constraint FK_City_countryId_Country_id foreign key(countryId) references Country(id)