背景
とあるゲームのクランメンバー募集サイトを作っていて、Users、Threads(板 スレ)、Commentsの三つのテーブルで外部キー連携しようとした際にエラーが出た。 エラーの内容はこれSQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint
(SQL: alter table `comments` add constraint `comments_user_id_foreign`
foreign key (`user_id`) references `users` (`id`) on delete cascade on update cascade)
外部キーが追加できないよーとのことなので、とりあえずググってみた。