I have a User table with the following schema:
User -- id , name , age etc
and a Ride table with the following schema:
Ride -- id , from , to etc.
I also have a Bookings table with the schema:
Booking - id, User_id, Ride_id
Is there any way I can describe the details about the ride like from , to etc and also details about the user who made the booking?