Forum Moderators: coopster
What I’m wondering is what is the best practice for setting the tables up. Do I just extend the listing table to include every field for every child class or do I set up a new table for every child class?
Thanks in advance
Then there should be a separate table just for the parent class that contains the info for that class. 'address' should be inherited from the parent class if it's something that will be defined for each instance. There shouldn't be much duplication in the tables. If something can be part of any instance of a child class, it should be defined in the parent class and inherited.