I'm thinking of the best way to design a database given the following situation.
- There are over 1000 hotel room units.
- Each hotel room unit has a list of about 100 individual types of items with a qty attached to them. The inventory is standard for each hotel room. But the qty of each item can be changed.
For example 3 coffee mugs, 2 towels etc.
I also need to track lost or damaged items for each unit...
what would be the best way to design the database?
Have a table of each unique item, its qty, its property id, its lost and damaged items for each property ID?
Is there a better way to do it?