前提・実現したいこと
Laravel: 5.8.36
mysql: 8.0.16
OS: MacOS
投稿とコメントテーブルを作成して、投稿は複数のコメントを持てるようにします。
子テーブル(comments)から親テーブル(posts)を参照できるようにしたいです。
DBを用意してマイグレーションファイルを編集。
その後「php artisan migrate」を実行すると以下のようなエラーが出ました。
*postsテーブル、commentsテーブルの順にマイグレーションファイルを作成しています。
発生している問題・エラーメッセージ
Illuminate\Database\QueryException : SQLSTATE[HY000]: General error: 3780 Referencing column 'post_id' and referenced column 'id' in foreign key constraint 'comments_post_id_foreign' are incompatible. (SQL: alter table `comments` add constraint `comments_post_id_foreign` foreign key (`post_id`) references `posts` (`id`))
該当のソースコード
[create_posts_table.php]
laravel
1class CreatePostsTable extends Migration 2{ 3 public function up() 4 { 5 Schema::create('posts', function (Blueprint $table) { 6 $table->bigIncrements('id'); 7 $table->string('title', 50); 8 $table->text('body'); 9 $table->timestamps(); 10 }); 11 } 12 13 public function down() 14 { 15 Schema::dropIfExists('posts'); 16 } 17}
[create_comments_table.php]
Laravel
1class CreateCommentsTable extends Migration 2{ 3 public function up() 4 { 5 Schema::create('comments', function (Blueprint $table) { 6 $table->bigIncrements('id'); 7 $table->integer('post_id')->unsigned(); 8 $table->text('body'); 9 $table->timestamps(); 10 11 //外部キー制約 12 $table->foreign('post_id')->references('id')->on('posts'); 13 }); 14 } 15 16 public function down() 17 { 18 Schema::dropIfExists('comments'); 19 } 20}
試したこと
子テーブル(comments)に[$table->engine = 'InnoDB';]を付け加えて実行しましたがうまくいきませんでした。テーブルは作成されますが互換性がないとのエラーを返されます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/28 07:36
退会済みユーザー
2019/12/28 07:43
2019/12/28 07:59 編集
退会済みユーザー
2019/12/28 08:16 編集