If I have a User and I want to make different types of users, say just normal users with only an email and subscribers who have a website field, how would I make subscribers inherit everything from Users with just an added field?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You would need to create a table with all of the fields, as well as specify a type column. i.e
Then you can have classes like
A subscriber will inherit everything from the Users model. The type column is there so that you can distinguish from the different models. For instance using
Will only get subscribers, where as if you did not use the 'type' column it would also find users too. |
|||||||||||
|
|
You want single table inheritance. Go read Alex Reisner's post on the topic. |
|||
|
|