method
define
v5.1.7 -
Show latest stable
- Class:
ActiveRecord::Schema
define(info, &block)public
No documentation available.
# File activerecord/lib/active_record/schema.rb, line 47
def define(info, &block) # :nodoc:
instance_eval(&block)
if info[:version].present?
ActiveRecord::SchemaMigration.create_table
connection.assume_migrated_upto_version(info[:version], migrations_paths)
end
ActiveRecord::InternalMetadata.create_table
ActiveRecord::InternalMetadata[:environment] = ActiveRecord::Migrator.current_environment
end