string('timezone')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('patients', function (Blueprint $table) { $table->dropColumn('timezone'); }); } };