Tagged Questions
4
votes
2answers
491 views
What changes do I need for my tables to work on AppEngine's BigTable?
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
...
1
vote
1answer
41 views
What would be the best table structure?
I'm developing an app that will store MLS (Multiple Listing Service) Property Listings from several different MLS's. The majority of my customers will only use one MLS, however, some will use mutliple ...
0
votes
2answers
47 views
How to make tasks double-checked (the way how to store it in the DB)?
I have a DB that stores different types of tasks and more items in different tables.
In many of these tables (that their structure is different) I need a way to do it that the item has to be ...