Changes between Version 2 and Version 3 of ManageTripUseCase
- Timestamp:
- 01/13/25 12:57:47 (45 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ManageTripUseCase
v2 v3 29 29 JOIN location as lt on r.to_location_id = lt.location_id 30 30 JOIN trip_stops as stop on lf.location_id = stop.location_id 31 WHERE status = 'NOT_STARTED' AND date > {date_after} AND date < {date_before} 31 WHERE status = 'NOT_STARTED' 32 AND date > {date_after} AND date < {date_before} -- Optional 32 33 ORDER BY date, stop_time; 33 34 }}}