Update: 2026-07-06 01:55:28

This commit is contained in:
Hamza-Ayed
2026-07-06 01:55:28 +03:00
parent f227ce899d
commit f52316fa94
+3 -3
View File
@@ -17,8 +17,8 @@ echo "Updating Kazan pricing for Jordan...\n";
// Update the kazan table where country is Jordan
$sql = "UPDATE kazan
SET start_price = 0.40,
price_km = 0.30,
SET start_price = 0.35,
price_km = 0.22,
normal_min_price = 0.05
WHERE country = 'Jordan' OR country = 'JO'";
@@ -28,7 +28,7 @@ $result = $stmt->execute();
if ($result) {
$rowCount = $stmt->rowCount();
echo "Successfully updated $rowCount row(s) for Jordan in the kazan table.\n";
echo "New Pricing: Base=0.40 JOD, Per Km=0.30 JOD, Per Min=0.05 JOD\n";
echo "New Pricing: Base=0.35 JOD, Per Km=0.22 JOD, Per Min=0.05 JOD\n";
} else {
echo "Failed to update kazan table.\n";
}