string('state'); $table->string('state_code'); $table->unsignedInteger('country_id'); $table->foreign('country_id')->references('id')->on('countries'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('states'); } }