timestamp('deleted_at')->nullable(); }); } public function down() { if (Schema::hasColumn('users', 'deleted_at')) { Schema::table('users', function($table) { $table->dropColumn('deleted_at'); }); } } }