Laravel Database Schema, Nullable Foreign

前端 未结 4 817
自闭症患者
自闭症患者 2020-12-15 16:52

I\'ve these two database tables:

  1. User Tables
  2. Partner Tables

User Tables will handle this kind of informations

4条回答
  •  攒了一身酷
    2020-12-15 17:30

    Set the country_id and the state_id nullable, like so.

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

提交回复
热议问题