Flowdock
method

load_schema!

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ClassMethods
load_schema!() public

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/attributes.rb, line 249
      def load_schema! # :nodoc:
        super
        attributes_to_define_after_schema_loads.each do |name, (type, options)|
          define_attribute(name, _lookup_cast_type(name, type, options), **options.slice(:default))
        end
      end
Register or log in to add new notes.