Flowdock
method

load_schema!

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ClassMethods
load_schema!() 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/attribute_decorators.rb, line 50
        def load_schema!
          super
          attribute_types.each do |name, type|
            decorated_type = attribute_type_decorations.apply(name, type)
            define_attribute(name, decorated_type)
          end
        end
Register or log in to add new notes.