En succès
A duré 8 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 Answer_choices(answer_id int not null, choices_id int not null, unique (answer_id, choices_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 alter table Answer_choices add constraint FK_Answer_choices_choices_id_Choice_id foreign key(choices_id) references Choice(id)
2026-02-10 07:22:36 DEBUG DDLDeployer alter table Answer_choices add constraint FK_Answer_choices_answer_id_Answer_id foreign key(answer_id) references Answer(id)