Answers for "laravel 9 migration nullable foregn key"

PHP
2

foreign key nullable in laravel

$table
      ->foreignId('other_table_id')
      ->nullable() // here
      ->references('id')
      ->on('other_table');
Posted by: Guest on October-01-2021
1

laravel 8 foreign key migration

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

Code answers related to "laravel 9 migration nullable foregn key"

Browse Popular Code Answers by Language