diff --git a/backend/bot/update_jordan_kazan.php b/backend/bot/update_jordan_kazan.php index 1adfd9c7..618b33c8 100644 --- a/backend/bot/update_jordan_kazan.php +++ b/backend/bot/update_jordan_kazan.php @@ -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"; }