bigIncrements('id'); $table->string('name')->nullable(); $table->string('address_street_1')->nullable(); $table->string('address_street_2')->nullable(); $table->string('city')->nullable(); $table->string('state')->nullable(); $table->integer('country_id')->unsigned()->nullable(); $table->foreign('country_id')->references('id')->on('countries'); $table->string('zip')->nullable(); $table->string('phone')->nullable(); $table->string('fax')->nullable(); $table->string('type')->nullable(); $table->integer('user_id')->unsigned(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('addresses'); } }