En succès
A duré 10 ms.
Standard Output
2026-02-10 07:22:36 DEBUG DDLDeployer create table Answer(id int not null, unique (id))
2026-02-10 07:22:36 DEBUG DDLDeployer create table Choice(label varchar(255), id int not null, unique (id))
2026-02-10 07:22:36 DEBUG DDLDeployer create table Toto(left_side_id int not null, right_side_id int not null, unique (left_side_id, right_side_id))
2026-02-10 07:22:36 DEBUG DDLDeployer alter table Toto add constraint FK_Toto_left_side_id_Answer_id foreign key(left_side_id) references Answer(id)
2026-02-10 07:22:36 DEBUG DDLDeployer alter table Toto add constraint FK_Toto_right_side_id_Choice_id foreign key(right_side_id) references Choice(id)