-- Convert rental_bookings start_hour/end_hour from whole hours to minutes since midnight -- Safe: only converts rows where start_hour < 25 (i.e., stored as hours, not minutes yet) UPDATE rental_bookings SET start_hour = start_hour * 60, end_hour = end_hour * 60 WHERE start_hour < 25;