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