Let's say I have a booking database consisting of users:
user_id
fname
lname
and their tickets
ticket_id
user_id
flight_no
and associated flights
flight_no
airline
departure_time
arrival_time
What would I need to change to move this Google AppEngine?
I understand AppEngine doesn't allow joins.
Does that mean my table should become one big schmudge of fields all lumped together?
bookings:
user_id
fname
lname
ticket_id
flight_no
airline
departure_time
arrival_time
In other words, all of my queries now run against the same table?