create table emails(id integer primary key auto_increment not null, usuario_id integer not null, email varchar(100) not null, foreign key (usuario_id) references usuario(id));
Ao digitar esta linha de comando o MySQL me mostra:
ERROR 1215 (HY000): Cannot add foreign key constraint
Porque não posso adicionar esta chave estrangeira?