Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Laravel-Datenbankschema, Nullable Foreign

Legen Sie die country_id fest und die state_id nullable, so.

$table->integer('country_id')->nullable()->unsigned();

$table->integer('state_id')->nullable()->unsigned();