Standard Output
2026-06-22 13:00:56 DEBUG DDLDeployer create table Device(id int not null, name varchar(255), locationId int, unique (id))
2026-06-22 13:00:56 DEBUG DDLDeployer create table Town(id int not null, street varchar(255), unique (id))
2026-06-22 13:00:56 DEBUG DDLDeployer alter table Device add constraint FK_Device_locationId_Town_id foreign key(locationId) references Town(id)