method

inherited

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ClassMethods
inherited(child_class) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/model_schema.rb, line 600
        def inherited(child_class)
          super
          child_class.initialize_load_schema_monitor
          child_class.reload_schema_from_cache(false)
          child_class.class_eval do
            @ignored_columns = nil
          end
        end
Register or log in to add new notes.