Ao criar a migration v4 ele lança uma exception que diz que a SQL está errada:
create table resposta(
id bigint not null auto_increment,
mensagem varchar(300) not null,
data_criacao datetime not null,
topico_id bigint not null,
autor_id bigint not null,
solucao int(1) not null,
primary key(id),
foreign key(topico_id) references topico(id),
foreign key(autor_id) references usuario(id)
);
Tente substituir por:
create table resposta(
id bigint not null,
mensagem varchar(300) not null,
data_criacao datetime not null,
topico_id bigint not null,
autor_id bigint not null,
solucao int not null default 1,
primary key(id),
foreign key(topico_id) references topico(id),
foreign key(autor_id) references usuario(id)
);
Acredito que o campo solucao estava sendo inicializado errado.