LARAVEL 8: General error: 1005 occured while running migration with foreign key

LARAVEL 8: General error: 1005 occured while running migration with foreign key

我想要 运行 一个名为 articles 的迁移,它是这样的:

public function up()
{
    Schema::create('articles', function (Blueprint $table) {
        $table->id();
        $table->integer('user_id')->unsigned();
        $table->foreign('user_id')->refrence('id')->on('users')->onDelete('cascade');
        $table->string('title');
        $table->string('slug');
        $table->text('body');
        $table->text('description');
        $table->text('body');
        $table->string('imageUrl');
        $table->string('tags');
        $table->integer('viewCount')->default(0);
        $table->integer('commentCount')->default(0);
        $table->timestamps();
    });
}

但是我得到这个错误:

SQLSTATE[HY000]: General error: 1005 Can't create table `gooyanet`.`#sql-1ce8_1d` (errno: 150 "Foreign key constraint is incorrectly formed") (SQL: alter table `articles` add constraint `articles_user_id_foreign` foreign key (`user_id`) references `users` (`id`) on delete cascade)

所以我在网上搜索,他们说我必须先创建表,然后再添加外键,所以我改为这样写:

public function up()
{
    Schema::create('articles', function (Blueprint $table) {
        $table->increments('id');
        $table->integer('user_id')->unsigned();
        $table->string('title');
        $table->string('slug');
        $table->text('description');
        $table->text('body');
        $table->string('imageUrl');
        $table->string('tags');
        $table->integer('viewCount')->default(0);
        $table->integer('commentCount')->default(0);
        $table->timestamps();
    });
    Schema::table('articles', function($table)
    {
        $table->foreign('user_id')
            ->references('id')->on('users')
            ->onDelete('cascade');
    });
}

但是现在错误是这样的:

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'gooyanet.articles' doesn't exist (SQL: alter table `articles` add constraint `articles_user_id_foreign` foreign key (`user_id`) references `users` (`id`) on delete cascade)

那么我应该怎么做才能 运行 使用外键迁移?

默认情况下 Laravel 8 使用 unsignedBigInteger 作为外键 :

$table->bigInteger('user_id')->unsigned();
$table->foreign('user_id')->references('id')->on('users');

Alternative : Laravel 提供了额外的、更简洁的方法,这些方法使用约定来提供更好的开发人员体验。上面的例子可以这样写:

$table->foreignId('user_id')->constrained();