📜  使用 laravel 8 在迁移中创建外键 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:51.680000             🧑  作者: Mango

代码示例3
Schema::table('posts', function (Blueprint $table) {
    $table->unsignedBigInteger('user_id');

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