型号:
class User < ActiveRecord::Base
end
class Admin < User
end
class SpecialAdmin < Admin
end
我希望SpecialAdmin拥有与Admin模型相同的记录/数据集。例如,每个SpecialAdmin记录在编辑/创建时都可以在其类型列中包含“Admin” - 任何其他类似的解决方案也可以。
我试过这个
self.inheritance_column :nil # Didnt work because it fetches all records in the table
...becomes method # Didnt get this to work either
感谢您的任何意见!