From f52316fa945fa87023ff5c509af503fd768f78d7 Mon Sep 17 00:00:00 2001 From: Hamza-Ayed Date: Mon, 6 Jul 2026 01:55:28 +0300 Subject: [PATCH] Update: 2026-07-06 01:55:28 --- backend/bot/update_jordan_kazan.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"; }