2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2005-09-23 09:29:33 -04:00
|
|
|
module ActiveRecord
|
2015-07-08 06:16:16 -04:00
|
|
|
# = Active Record \Schema
|
2010-08-05 11:15:07 -04:00
|
|
|
#
|
2005-10-16 12:00:16 -04:00
|
|
|
# Allows programmers to programmatically define a schema in a portable
|
|
|
|
# DSL. This means you can define tables, indexes, etc. without using SQL
|
|
|
|
# directly, so your applications can more easily support multiple
|
|
|
|
# databases.
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
#
|
|
|
|
# ActiveRecord::Schema.define do
|
|
|
|
# create_table :authors do |t|
|
2012-09-07 14:27:08 -04:00
|
|
|
# t.string :name, null: false
|
2005-10-16 12:00:16 -04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# add_index :authors, :name, :unique
|
|
|
|
#
|
|
|
|
# create_table :posts do |t|
|
2012-09-07 14:27:08 -04:00
|
|
|
# t.integer :author_id, null: false
|
2007-11-06 13:26:54 -05:00
|
|
|
# t.string :subject
|
|
|
|
# t.text :body
|
2012-09-07 14:27:08 -04:00
|
|
|
# t.boolean :private, default: false
|
2005-10-16 12:00:16 -04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# add_index :posts, :author_id
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# ActiveRecord::Schema is only supported by database adapters that also
|
|
|
|
# support migrations, the two features being very similar.
|
2015-12-05 16:39:30 -05:00
|
|
|
class Schema < Migration::Current
|
2005-10-16 12:00:16 -04:00
|
|
|
# Eval the given block. All methods available to the current connection
|
|
|
|
# adapter are available within the block, so you can easily use the
|
2015-07-08 06:16:16 -04:00
|
|
|
# database definition DSL to build up your schema (
|
|
|
|
# {create_table}[rdoc-ref:ConnectionAdapters::SchemaStatements#create_table],
|
|
|
|
# {add_index}[rdoc-ref:ConnectionAdapters::SchemaStatements#add_index], etc.).
|
2012-12-03 00:16:32 -05:00
|
|
|
#
|
2012-12-09 17:52:28 -05:00
|
|
|
# The +info+ hash is optional, and if given is used to define metadata
|
|
|
|
# about the current schema (currently, only the schema's version):
|
2012-12-03 00:16:32 -05:00
|
|
|
#
|
2017-08-20 12:59:06 -04:00
|
|
|
# ActiveRecord::Schema.define(version: 2038_01_19_000001) do
|
2012-12-09 17:52:28 -05:00
|
|
|
# ...
|
|
|
|
# end
|
2016-10-28 23:05:58 -04:00
|
|
|
def self.define(info = {}, &block)
|
2012-12-09 17:52:28 -05:00
|
|
|
new.define(info, &block)
|
2012-12-03 00:16:32 -05:00
|
|
|
end
|
2015-09-09 06:02:35 -04:00
|
|
|
|
|
|
|
def define(info, &block) # :nodoc:
|
|
|
|
instance_eval(&block)
|
|
|
|
|
|
|
|
if info[:version].present?
|
2019-05-30 08:25:05 -04:00
|
|
|
connection.schema_migration.create_table
|
2018-12-27 19:21:09 -05:00
|
|
|
connection.assume_migrated_upto_version(info[:version])
|
2015-09-09 06:02:35 -04:00
|
|
|
end
|
2015-08-14 12:31:33 -04:00
|
|
|
|
|
|
|
ActiveRecord::InternalMetadata.create_table
|
2018-01-10 10:25:13 -05:00
|
|
|
ActiveRecord::InternalMetadata[:environment] = connection.migration_context.current_environment
|
2015-09-09 06:02:35 -04:00
|
|
|
end
|
2005-09-23 09:29:33 -04:00
|
|
|
end
|
|
|
|
end
|