web-dev-qa-db-ja.com

Laravel移行では外部キーを追加できません

laravelデータベースの移行を記述しようとしていますが、外部キーに関する次のエラーが発生しています。

  [Illuminate\Database\QueryException]                                                                                                                                                                                                                    
  SQLSTATE[42000]: Syntax error or access violation: 1072 Key column 'category_id' doesn't exist in table (SQL: alter table `subcategories` add constraint subcategories_category_id_foreign foreign key (`category_id`) references `categories` (`id`))  



  [PDOException]                                                                                           
  SQLSTATE[42000]: Syntax error or access violation: 1072 Key column 'category_id' doesn't exist in table 

categoriesおよびsubcategoriesテーブルは作成されますが、外部キーは作成されません。これが私の移行です:

<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateCategoryTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('categories', function ($table) {
            $table->increments('id')->unsigned();
            $table->string('name')->unique();
        });

        Schema::create('subcategories', function ($table) {
            $table->increments('id')->unsigned();
            $table->foreign('category_id')->references('id')->on('categories');
            $table->string('name')->unique();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('categories');
        Schema::drop('subcategories');
    }
}

何か案は?ありがとう!

20
Roemer Bakker

外部キーを作成する前に列を作成する必要があります:

$table->integer('category_id')->unsigned();
$table->foreign('category_id')->references('id')->on('categories');

ドキュメント: http://laravel.com/docs/5.1/migrations#foreign-key-constraints

47
Limon Monte

呼び出したメソッドに->get()を追加するのを忘れました。

1
Roemer Bakker