I'm wondering what the best way would be to set up models in Ruby on Rails for a tutoring website.
I would like the users to register (I have no particular way in mind but I'm assuming I'll go with one of the more popular ruby gems). They can then choose to be either tutors or students or both. Should I make a tutors model, a students model and have them inherit basic info from the authentication? Or would it be better to have a users model where all the basic info goes (birthday, gender) and then have student/tutor inherit from that?