diff --git a/activerecord/lib/active_record/model.rb b/activerecord/lib/active_record/model.rb index 16d9d404e3d20bd086ddc6a545d42ca6164a3aab..f059840f4d9136785164d22d6ddf3608ab6dc7e2 100644 --- a/activerecord/lib/active_record/model.rb +++ b/activerecord/lib/active_record/model.rb @@ -108,12 +108,9 @@ def abstract_class? # The default inheritance column name is +type+, which means it's a # reserved word inside Active Record. To be able to use single-table # inheritance with another column name, or to use the column +type+ in - # your own model for something else, you can override this method to - # return a different name: + # your own model for something else, you can set +inheritance_column+: # - # def self.inheritance_column - # 'zoink' - # end + # self.inheritance_column = 'zoink' def inheritance_column 'type' end