这是我的迁移代码:

public function up()
{
    Schema::create('foos', function(Blueprint $table) {
        // Primary key
        $table->increments('id');

        // Standard
        $table->engine = 'InnoDB';
        $table->timestamps();
        $table->softDeletes();
    });

    Schema::create('bars', function(Blueprint $table) {
        // Primary key
        $table->increments('id');

        // Define foreign key
        $table->integer('foo_id')->unsigned;

        // Foreign key contraints
        // NOTE: causes "General error: 1215 Cannot add foreign key constraint"
        // $table->foreign('foo_id')->references('id')->on('foos');

        // Standard
        $table->engine = 'InnoDB';
        $table->timestamps();
        $table->softDeletes();
    });
}

public function down()
{
    Schema::drop('foos');
    Schema::drop('bars');
}

当未注释掉定义外键约束的代码时,在命令行上出现以下错误:一般错误:1215无法添加外键约束

有什么想法我做错了吗?

最佳答案

$table->integer('foo_id')->unsigned;

应该
$table->integer('foo_id')->unsigned();

或者您可以使用简短版本:
$table->unsignedInteger('foo_id');

关于Laravel 4迁移-无法添加外键约束,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18995337/

10-12 01:04