method

load_schema!

load_schema!()
public

No documentation available.

# 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