string("prescription_status")->default("pending"); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('carts', function (Blueprint $table) { $table->dropColumn("prescription_status")->nullable(); }); } };