Answers for "forenkey set inlaravel 8"

PHP
0

forenkey set inlaravel 8

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

Schema::table('posts', function (Blueprint $table) {
    $table->unsignedBigInteger('user_id');

    $table->foreign('user_id')->references('id')->on('users');
});
Posted by: Guest on December-16-2020

Browse Popular Code Answers by Language