string('mobile', 100)->nullable(); }); } public function down() { if (Schema::hasTable('users')) { Schema::table('users', function ($table) { $table->dropColumn(['mobile']); }); } } }