I have a model class Person < ActiveRecord::Base
and 2 classes inheriting from it
class User < Person and class Contact < Person
obviously the id is person.id
but is there anyway to use user.id and contact.id or should I
always use person.id ???
thanks for your suggestions
erwin