integer('state_id')->unsigned()->nullable()->index(); $table->integer('country_id')->unsigned()->nullable()->index(); }); } public function down() { if (Schema::hasTable('users')) { Schema::table('users', function ($table) { $table->dropColumn(['state_id', 'country_id']); }); } } }