I am using single table inheritance. class User < ActiveRecord::Base has_many :abc end
class Student < User end The student class should not inherit the has_many :abc relationship. How can we override it? Is there a way to remove an association in the derived class? Pankaj --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

