Update: 2026-06-28 23:37:42

This commit is contained in:
Hamza-Ayed
2026-06-28 23:37:42 +03:00
parent 1b6e172a4a
commit 24da2bc7ca
2 changed files with 51 additions and 7 deletions

10
backend/reset_driver.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
require_once __DIR__ . '/core/bootstrap.php';
try {
$db = Database::get('main');
$stmt = $db->prepare("UPDATE drivers SET status = 'pending_review' WHERE driverID = 'TEST202606252141546122'");
$stmt->execute();
echo "Driver status updated to pending_review successfully!";
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}