INFO Running migrations. create_bookings_table 8.11ms FAIL Illuminate\Database\QueryException SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'bookings' already exists (Connection: mysql, SQL: create table `bookings` (`id` bigint unsigned not null auto_increment primary key, `booking_number` varchar(255) not null, `user_id` bigint unsigned not null, `driver_id` bigint unsigned null, `vehicle_id` bigint unsigned null, `vehicle_type_id` bigint unsigned not null, `pickup_address` varchar(255) not null, `pickup_latitude` decimal(10, 8) not null, `pickup_longitude` decimal(11, 8) not null, `drop_address` varchar(255) not null, `drop_latitude` decimal(10, 8) not null, `drop_longitude` decimal(11, 8) not null, `distance_km` decimal(8, 2) not null, `duration_minutes` int not null, `base_fare` decimal(8, 2) not null, `distance_fare` decimal(8, 2) not null, `time_fare` decimal(8, 2) not null, `surge_multiplier` decimal(3, 2) not null default '1', `surge_amount` decimal(8, 2) not null default '0', `discount_amount` decimal(8, 2) not null default '0', `coupon_code` varchar(255) null, `tax_amount` decimal(8, 2) not null default '0', `total_fare` decimal(8, 2) not null, `status` enum('pending', 'accepted', 'arriving', 'arrived', 'in_progress', 'completed', 'cancelled') not null default 'pending', `scheduled_at` timestamp null, `accepted_at` timestamp null, `arriving_at` timestamp null, `arrived_at` timestamp null, `started_at` timestamp null, `completed_at` timestamp null, `cancelled_at` timestamp null, `cancelled_by` enum('user', 'driver', 'admin') null, `cancellation_reason` text null, `payment_method` enum('cash', 'wallet', 'card') not null default 'cash', `payment_status` enum('pending', 'completed', 'failed', 'refunded') not null default 'pending', `notes` text null, `route_polyline` text null, `created_at` timestamp null, `updated_at` timestamp null, `deleted_at` timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci') at vendor\laravel\framework\src\Illuminate\Database\Connection.php:826 822▕ $this->getName(), $query, $this->prepareBindings($bindings), $e 823▕ ); 824▕ } 825▕ ➜ 826▕ throw new QueryException( 827▕ $this->getName(), $query, $this->prepareBindings($bindings), $e 828▕ ); 829▕ } 830▕ } 1 vendor\laravel\framework\src\Illuminate\Database\Connection.php:570 PDOException::("SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'bookings' already exists") 2 vendor\laravel\framework\src\Illuminate\Database\Connection.php:570 PDOStatement::execute()