Flowdock
method

load_schema

Importance_0
v6.0.0 - 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/model_schema.rb, line 475
        def load_schema
          return if schema_loaded?
          @load_schema_monitor.synchronize do
            return if defined?(@columns_hash) && @columns_hash

            load_schema!

            @schema_loaded = true
          end
        end
Register or log in to add new notes.