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.

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?

share|improve this question

2 Answers

up vote 7 down vote accepted

You would need to create a table with all of the fields, as well as specify a type column. i.e

create_table :users do |t|
  t.string :email
  t.string :website
  t.string :type
end

Then you can have classes like

Class User < ActiveRecord::Base

Class Subscriber < User

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

Subscriber.all 

Will only get subscribers, where as if you did not use the 'type' column it would also find users too.

share|improve this answer
6  
OP: This is called "Single Table Inheritance" or "STI". So Google that for more info on how it works if you need it. – Pavling Jun 21 '11 at 18:08
After doing quite a bit of googling on the topic, some also seem to prefer using polymorphic associations when the data differs between the models. This avoids having a single table with lots of null fields. I found this railscast helpful: railscasts.com/episodes/394-sti-and-polymorphic-associations. – rogerkk Mar 7 at 13:06
What actual value should the type column have? – Michael Durrant Apr 21 at 14:00
@MichaelDurrant Do you mean the contents in the DB? It'll be the name of the class that it refers to. So in the example, you would have the strings "User" and "Subscriber" as the values in the type field – Olives Apr 22 at 16:28

You want single table inheritance. Go read Alex Reisner's post on the topic.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.