string('phone', 100)->nullable(); $table->string('company', 100)->nullable(); $table->string('street_addr')->nullable(); $table->string('city', 100)->nullable(); $table->string('zip', 20)->nullable(); }); } public function down() { if (Schema::hasTable('users')) { Schema::table('users', function ($table) { $table->dropColumn(['phone', 'company', 'street_addr', 'city', 'zip']); }); } } }