Classless tables possible with Datamapper?
- by barerd
I have an Item class with the following attributes:
itemId,name,weight,volume,price,required_skills,required_items.
Since the last two attributes are going to be multivalued, I removed them and create new schemes like:
itemID,required_skill (itemID is foreign key, itemID and required_skill is primary key.)
Now, I'm confused how to create/use…