Answers for "foreign key in laravel 7 migration nullable"

PHP
0

foreign key nullable in laravel

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

laravel migration table column nullable

$table->string(/*column name*/, /*size*/)->nullable(true);
Posted by: Guest on October-19-2021

Code answers related to "foreign key in laravel 7 migration nullable"

Browse Popular Code Answers by Language