activerecord 6.0.4.7 → 6.1.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1199 -777
- data/MIT-LICENSE +1 -1
- data/README.rdoc +2 -2
- data/lib/active_record/aggregations.rb +5 -5
- data/lib/active_record/association_relation.rb +30 -12
- data/lib/active_record/associations/alias_tracker.rb +19 -15
- data/lib/active_record/associations/association.rb +49 -26
- data/lib/active_record/associations/association_scope.rb +18 -20
- data/lib/active_record/associations/belongs_to_association.rb +23 -10
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +8 -3
- data/lib/active_record/associations/builder/association.rb +32 -5
- data/lib/active_record/associations/builder/belongs_to.rb +10 -7
- data/lib/active_record/associations/builder/collection_association.rb +5 -4
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +0 -1
- data/lib/active_record/associations/builder/has_many.rb +6 -2
- data/lib/active_record/associations/builder/has_one.rb +11 -14
- data/lib/active_record/associations/builder/singular_association.rb +1 -1
- data/lib/active_record/associations/collection_association.rb +32 -18
- data/lib/active_record/associations/collection_proxy.rb +12 -5
- data/lib/active_record/associations/foreign_association.rb +13 -0
- data/lib/active_record/associations/has_many_association.rb +24 -2
- data/lib/active_record/associations/has_many_through_association.rb +10 -4
- data/lib/active_record/associations/has_one_association.rb +15 -1
- data/lib/active_record/associations/join_dependency/join_association.rb +37 -21
- data/lib/active_record/associations/join_dependency/join_part.rb +1 -1
- data/lib/active_record/associations/join_dependency.rb +63 -49
- data/lib/active_record/associations/preloader/association.rb +14 -8
- data/lib/active_record/associations/preloader/through_association.rb +1 -1
- data/lib/active_record/associations/preloader.rb +5 -3
- data/lib/active_record/associations/singular_association.rb +1 -1
- data/lib/active_record/associations.rb +118 -11
- data/lib/active_record/attribute_assignment.rb +10 -8
- data/lib/active_record/attribute_methods/before_type_cast.rb +13 -9
- data/lib/active_record/attribute_methods/dirty.rb +1 -11
- data/lib/active_record/attribute_methods/primary_key.rb +6 -2
- data/lib/active_record/attribute_methods/query.rb +3 -6
- data/lib/active_record/attribute_methods/read.rb +8 -11
- data/lib/active_record/attribute_methods/serialization.rb +11 -5
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +12 -13
- data/lib/active_record/attribute_methods/write.rb +12 -20
- data/lib/active_record/attribute_methods.rb +64 -54
- data/lib/active_record/attributes.rb +33 -8
- data/lib/active_record/autosave_association.rb +47 -30
- data/lib/active_record/base.rb +2 -14
- data/lib/active_record/callbacks.rb +152 -22
- data/lib/active_record/coders/yaml_column.rb +24 -2
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +185 -134
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +2 -44
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +66 -23
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +3 -8
- data/lib/active_record/connection_adapters/abstract/quoting.rb +44 -35
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +3 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +153 -116
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +114 -26
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +3 -3
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +228 -83
- data/lib/active_record/connection_adapters/abstract/transaction.rb +92 -33
- data/lib/active_record/connection_adapters/abstract_adapter.rb +52 -76
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +123 -87
- data/lib/active_record/connection_adapters/column.rb +15 -1
- data/lib/active_record/connection_adapters/deduplicable.rb +29 -0
- data/lib/active_record/connection_adapters/legacy_pool_manager.rb +35 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +24 -24
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +1 -1
- data/lib/active_record/connection_adapters/mysql/quoting.rb +18 -3
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +32 -6
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +8 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +5 -2
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +7 -4
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +10 -1
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +31 -12
- data/lib/active_record/connection_adapters/pool_config.rb +73 -0
- data/lib/active_record/connection_adapters/pool_manager.rb +47 -0
- data/lib/active_record/connection_adapters/postgresql/column.rb +24 -1
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +14 -53
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +3 -5
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +25 -0
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +11 -1
- data/lib/active_record/connection_adapters/postgresql/oid.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +30 -4
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +5 -1
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +61 -29
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +8 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +75 -64
- data/lib/active_record/connection_adapters/schema_cache.rb +130 -15
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +8 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +32 -5
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +1 -1
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +5 -1
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +36 -3
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +48 -50
- data/lib/active_record/connection_adapters.rb +52 -0
- data/lib/active_record/connection_handling.rb +218 -71
- data/lib/active_record/core.rb +271 -60
- data/lib/active_record/database_configurations/connection_url_resolver.rb +99 -0
- data/lib/active_record/database_configurations/database_config.rb +52 -9
- data/lib/active_record/database_configurations/hash_config.rb +54 -8
- data/lib/active_record/database_configurations/url_config.rb +15 -40
- data/lib/active_record/database_configurations.rb +125 -85
- data/lib/active_record/delegated_type.rb +209 -0
- data/lib/active_record/destroy_association_async_job.rb +36 -0
- data/lib/active_record/enum.rb +69 -34
- data/lib/active_record/errors.rb +47 -12
- data/lib/active_record/explain.rb +9 -4
- data/lib/active_record/explain_subscriber.rb +1 -1
- data/lib/active_record/fixture_set/file.rb +10 -17
- data/lib/active_record/fixture_set/model_metadata.rb +1 -2
- data/lib/active_record/fixture_set/render_context.rb +1 -1
- data/lib/active_record/fixture_set/table_row.rb +2 -2
- data/lib/active_record/fixtures.rb +58 -9
- data/lib/active_record/gem_version.rb +3 -3
- data/lib/active_record/inheritance.rb +40 -18
- data/lib/active_record/insert_all.rb +38 -5
- data/lib/active_record/integration.rb +3 -5
- data/lib/active_record/internal_metadata.rb +18 -7
- data/lib/active_record/legacy_yaml_adapter.rb +7 -3
- data/lib/active_record/locking/optimistic.rb +24 -17
- data/lib/active_record/locking/pessimistic.rb +6 -2
- data/lib/active_record/log_subscriber.rb +27 -8
- data/lib/active_record/middleware/database_selector/resolver/session.rb +3 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +5 -0
- data/lib/active_record/middleware/database_selector.rb +4 -1
- data/lib/active_record/migration/command_recorder.rb +47 -27
- data/lib/active_record/migration/compatibility.rb +72 -18
- data/lib/active_record/migration.rb +114 -84
- data/lib/active_record/model_schema.rb +89 -14
- data/lib/active_record/nested_attributes.rb +2 -3
- data/lib/active_record/no_touching.rb +1 -1
- data/lib/active_record/persistence.rb +50 -45
- data/lib/active_record/query_cache.rb +15 -5
- data/lib/active_record/querying.rb +11 -6
- data/lib/active_record/railtie.rb +64 -44
- data/lib/active_record/railties/console_sandbox.rb +2 -4
- data/lib/active_record/railties/databases.rake +279 -101
- data/lib/active_record/readonly_attributes.rb +4 -0
- data/lib/active_record/reflection.rb +60 -44
- data/lib/active_record/relation/batches/batch_enumerator.rb +25 -9
- data/lib/active_record/relation/batches.rb +38 -31
- data/lib/active_record/relation/calculations.rb +104 -43
- data/lib/active_record/relation/finder_methods.rb +44 -14
- data/lib/active_record/relation/from_clause.rb +1 -1
- data/lib/active_record/relation/merger.rb +20 -23
- data/lib/active_record/relation/predicate_builder/array_handler.rb +8 -9
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +4 -5
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +10 -6
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +1 -1
- data/lib/active_record/relation/predicate_builder.rb +61 -38
- data/lib/active_record/relation/query_methods.rb +324 -196
- data/lib/active_record/relation/record_fetch_warning.rb +3 -3
- data/lib/active_record/relation/spawn_methods.rb +8 -7
- data/lib/active_record/relation/where_clause.rb +111 -61
- data/lib/active_record/relation.rb +100 -81
- data/lib/active_record/result.rb +41 -33
- data/lib/active_record/runtime_registry.rb +2 -2
- data/lib/active_record/sanitization.rb +6 -17
- data/lib/active_record/schema_dumper.rb +34 -4
- data/lib/active_record/schema_migration.rb +2 -8
- data/lib/active_record/scoping/default.rb +1 -3
- data/lib/active_record/scoping/named.rb +1 -17
- data/lib/active_record/secure_token.rb +16 -8
- data/lib/active_record/serialization.rb +5 -3
- data/lib/active_record/signed_id.rb +116 -0
- data/lib/active_record/statement_cache.rb +20 -4
- data/lib/active_record/store.rb +8 -3
- data/lib/active_record/suppressor.rb +2 -2
- data/lib/active_record/table_metadata.rb +42 -51
- data/lib/active_record/tasks/database_tasks.rb +140 -113
- data/lib/active_record/tasks/mysql_database_tasks.rb +34 -35
- data/lib/active_record/tasks/postgresql_database_tasks.rb +24 -26
- data/lib/active_record/tasks/sqlite_database_tasks.rb +13 -9
- data/lib/active_record/test_databases.rb +5 -4
- data/lib/active_record/test_fixtures.rb +79 -31
- data/lib/active_record/timestamp.rb +4 -6
- data/lib/active_record/touch_later.rb +21 -21
- data/lib/active_record/transactions.rb +19 -66
- data/lib/active_record/type/serialized.rb +6 -2
- data/lib/active_record/type.rb +8 -1
- data/lib/active_record/type_caster/connection.rb +0 -1
- data/lib/active_record/type_caster/map.rb +8 -5
- data/lib/active_record/validations/associated.rb +1 -1
- data/lib/active_record/validations/numericality.rb +35 -0
- data/lib/active_record/validations/uniqueness.rb +24 -4
- data/lib/active_record/validations.rb +1 -0
- data/lib/active_record.rb +7 -14
- data/lib/arel/attributes/attribute.rb +4 -0
- data/lib/arel/collectors/bind.rb +5 -0
- data/lib/arel/collectors/composite.rb +8 -0
- data/lib/arel/collectors/sql_string.rb +7 -0
- data/lib/arel/collectors/substitute_binds.rb +7 -0
- data/lib/arel/nodes/binary.rb +82 -8
- data/lib/arel/nodes/bind_param.rb +8 -0
- data/lib/arel/nodes/casted.rb +21 -9
- data/lib/arel/nodes/equality.rb +6 -9
- data/lib/arel/nodes/grouping.rb +3 -0
- data/lib/arel/nodes/homogeneous_in.rb +76 -0
- data/lib/arel/nodes/in.rb +8 -1
- data/lib/arel/nodes/infix_operation.rb +13 -1
- data/lib/arel/nodes/join_source.rb +1 -1
- data/lib/arel/nodes/node.rb +7 -6
- data/lib/arel/nodes/ordering.rb +27 -0
- data/lib/arel/nodes/sql_literal.rb +3 -0
- data/lib/arel/nodes/table_alias.rb +7 -3
- data/lib/arel/nodes/unary.rb +0 -1
- data/lib/arel/nodes.rb +3 -1
- data/lib/arel/predications.rb +12 -18
- data/lib/arel/select_manager.rb +1 -2
- data/lib/arel/table.rb +13 -5
- data/lib/arel/visitors/dot.rb +14 -2
- data/lib/arel/visitors/mysql.rb +11 -1
- data/lib/arel/visitors/postgresql.rb +15 -4
- data/lib/arel/visitors/to_sql.rb +89 -78
- data/lib/arel/visitors.rb +0 -7
- data/lib/arel.rb +5 -13
- data/lib/rails/generators/active_record/migration/migration_generator.rb +1 -0
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +2 -0
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +3 -3
- data/lib/rails/generators/active_record/migration.rb +6 -1
- data/lib/rails/generators/active_record/model/model_generator.rb +39 -2
- data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +7 -0
- metadata +26 -26
- data/lib/active_record/advisory_lock_base.rb +0 -18
- data/lib/active_record/attribute_decorators.rb +0 -88
- data/lib/active_record/connection_adapters/connection_specification.rb +0 -296
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +0 -29
- data/lib/active_record/define_callbacks.rb +0 -22
- data/lib/active_record/railties/collection_cache_association_loading.rb +0 -34
- data/lib/active_record/relation/predicate_builder/base_handler.rb +0 -18
- data/lib/active_record/relation/where_clause_factory.rb +0 -33
- data/lib/arel/attributes.rb +0 -22
- data/lib/arel/visitors/depth_first.rb +0 -203
- data/lib/arel/visitors/ibm_db.rb +0 -34
- data/lib/arel/visitors/informix.rb +0 -62
- data/lib/arel/visitors/mssql.rb +0 -156
- data/lib/arel/visitors/oracle.rb +0 -158
- data/lib/arel/visitors/oracle12.rb +0 -65
- data/lib/arel/visitors/where_sql.rb +0 -22
@@ -3,6 +3,8 @@
|
|
3
3
|
require "benchmark"
|
4
4
|
require "set"
|
5
5
|
require "zlib"
|
6
|
+
require "active_support/core_ext/array/access"
|
7
|
+
require "active_support/core_ext/enumerable"
|
6
8
|
require "active_support/core_ext/module/attribute_accessors"
|
7
9
|
require "active_support/actionable_error"
|
8
10
|
|
@@ -18,7 +20,7 @@ module ActiveRecord
|
|
18
20
|
# For example the following migration is not reversible.
|
19
21
|
# Rolling back this migration will raise an ActiveRecord::IrreversibleMigration error.
|
20
22
|
#
|
21
|
-
# class IrreversibleMigrationExample < ActiveRecord::Migration[
|
23
|
+
# class IrreversibleMigrationExample < ActiveRecord::Migration[6.0]
|
22
24
|
# def change
|
23
25
|
# create_table :distributors do |t|
|
24
26
|
# t.string :zipcode
|
@@ -36,7 +38,7 @@ module ActiveRecord
|
|
36
38
|
#
|
37
39
|
# 1. Define <tt>#up</tt> and <tt>#down</tt> methods instead of <tt>#change</tt>:
|
38
40
|
#
|
39
|
-
# class ReversibleMigrationExample < ActiveRecord::Migration[
|
41
|
+
# class ReversibleMigrationExample < ActiveRecord::Migration[6.0]
|
40
42
|
# def up
|
41
43
|
# create_table :distributors do |t|
|
42
44
|
# t.string :zipcode
|
@@ -61,7 +63,7 @@ module ActiveRecord
|
|
61
63
|
#
|
62
64
|
# 2. Use the #reversible method in <tt>#change</tt> method:
|
63
65
|
#
|
64
|
-
# class ReversibleMigrationExample < ActiveRecord::Migration[
|
66
|
+
# class ReversibleMigrationExample < ActiveRecord::Migration[6.0]
|
65
67
|
# def change
|
66
68
|
# create_table :distributors do |t|
|
67
69
|
# t.string :zipcode
|
@@ -133,17 +135,34 @@ module ActiveRecord
|
|
133
135
|
|
134
136
|
action "Run pending migrations" do
|
135
137
|
ActiveRecord::Tasks::DatabaseTasks.migrate
|
138
|
+
|
139
|
+
if ActiveRecord::Base.dump_schema_after_migration
|
140
|
+
ActiveRecord::Tasks::DatabaseTasks.dump_schema(
|
141
|
+
ActiveRecord::Base.connection_db_config
|
142
|
+
)
|
143
|
+
end
|
136
144
|
end
|
137
145
|
|
138
146
|
def initialize(message = nil)
|
139
|
-
|
140
|
-
super("Migrations are pending. To resolve this issue, run:\n\n rails db:migrate RAILS_ENV=#{::Rails.env}")
|
141
|
-
elsif !message
|
142
|
-
super("Migrations are pending. To resolve this issue, run:\n\n rails db:migrate")
|
143
|
-
else
|
144
|
-
super
|
145
|
-
end
|
147
|
+
super(message || detailed_migration_message)
|
146
148
|
end
|
149
|
+
|
150
|
+
private
|
151
|
+
def detailed_migration_message
|
152
|
+
message = "Migrations are pending. To resolve this issue, run:\n\n bin/rails db:migrate"
|
153
|
+
message += " RAILS_ENV=#{::Rails.env}" if defined?(Rails.env)
|
154
|
+
message += "\n\n"
|
155
|
+
|
156
|
+
pending_migrations = ActiveRecord::Base.connection.migration_context.open.pending_migrations
|
157
|
+
|
158
|
+
message += "You have #{pending_migrations.size} pending #{pending_migrations.size > 1 ? 'migrations:' : 'migration:'}\n\n"
|
159
|
+
|
160
|
+
pending_migrations.each do |pending_migration|
|
161
|
+
message += "#{pending_migration.basename}\n"
|
162
|
+
end
|
163
|
+
|
164
|
+
message
|
165
|
+
end
|
147
166
|
end
|
148
167
|
|
149
168
|
class ConcurrentMigrationError < MigrationError #:nodoc:
|
@@ -157,7 +176,7 @@ module ActiveRecord
|
|
157
176
|
|
158
177
|
class NoEnvironmentInSchemaError < MigrationError #:nodoc:
|
159
178
|
def initialize
|
160
|
-
msg = "Environment data not found in the schema. To resolve this issue, run: \n\n rails db:environment:set"
|
179
|
+
msg = "Environment data not found in the schema. To resolve this issue, run: \n\n bin/rails db:environment:set"
|
161
180
|
if defined?(Rails.env)
|
162
181
|
super("#{msg} RAILS_ENV=#{::Rails.env}")
|
163
182
|
else
|
@@ -180,7 +199,7 @@ module ActiveRecord
|
|
180
199
|
msg = +"You are attempting to modify a database that was last run in `#{ stored }` environment.\n"
|
181
200
|
msg << "You are running in `#{ current }` environment. "
|
182
201
|
msg << "If you are sure you want to continue, first set the environment using:\n\n"
|
183
|
-
msg << " rails db:environment:set"
|
202
|
+
msg << " bin/rails db:environment:set"
|
184
203
|
if defined?(Rails.env)
|
185
204
|
super("#{msg} RAILS_ENV=#{::Rails.env}\n\n")
|
186
205
|
else
|
@@ -189,6 +208,14 @@ module ActiveRecord
|
|
189
208
|
end
|
190
209
|
end
|
191
210
|
|
211
|
+
class EnvironmentStorageError < ActiveRecordError # :nodoc:
|
212
|
+
def initialize
|
213
|
+
msg = +"You are attempting to store the environment in a database where metadata is disabled.\n"
|
214
|
+
msg << "Check your database configuration to see if this is intended."
|
215
|
+
super(msg)
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
192
219
|
# = Active Record Migrations
|
193
220
|
#
|
194
221
|
# Migrations can manage the evolution of a schema used by several physical
|
@@ -201,7 +228,7 @@ module ActiveRecord
|
|
201
228
|
#
|
202
229
|
# Example of a simple migration:
|
203
230
|
#
|
204
|
-
# class AddSsl < ActiveRecord::Migration[
|
231
|
+
# class AddSsl < ActiveRecord::Migration[6.0]
|
205
232
|
# def up
|
206
233
|
# add_column :accounts, :ssl_enabled, :boolean, default: true
|
207
234
|
# end
|
@@ -221,7 +248,7 @@ module ActiveRecord
|
|
221
248
|
#
|
222
249
|
# Example of a more complex migration that also needs to initialize data:
|
223
250
|
#
|
224
|
-
# class AddSystemSettings < ActiveRecord::Migration[
|
251
|
+
# class AddSystemSettings < ActiveRecord::Migration[6.0]
|
225
252
|
# def up
|
226
253
|
# create_table :system_settings do |t|
|
227
254
|
# t.string :name
|
@@ -293,7 +320,7 @@ module ActiveRecord
|
|
293
320
|
# +table_name+. Passing a hash containing <tt>:from</tt> and <tt>:to</tt>
|
294
321
|
# as +default_or_changes+ will make this change reversible in the migration.
|
295
322
|
# * <tt>change_column_null(table_name, column_name, null, default = nil)</tt>:
|
296
|
-
# Sets or removes a
|
323
|
+
# Sets or removes a <tt>NOT NULL</tt> constraint on +column_name+. The +null+ flag
|
297
324
|
# indicates whether the value can be +NULL+. See
|
298
325
|
# ActiveRecord::ConnectionAdapters::SchemaStatements#change_column_null for
|
299
326
|
# details.
|
@@ -337,7 +364,7 @@ module ActiveRecord
|
|
337
364
|
# The Rails package has several tools to help create and apply migrations.
|
338
365
|
#
|
339
366
|
# To generate a new migration, you can use
|
340
|
-
# rails generate migration MyNewMigration
|
367
|
+
# bin/rails generate migration MyNewMigration
|
341
368
|
#
|
342
369
|
# where MyNewMigration is the name of your migration. The generator will
|
343
370
|
# create an empty migration file <tt>timestamp_my_new_migration.rb</tt>
|
@@ -346,41 +373,36 @@ module ActiveRecord
|
|
346
373
|
#
|
347
374
|
# There is a special syntactic shortcut to generate migrations that add fields to a table.
|
348
375
|
#
|
349
|
-
# rails generate migration add_fieldname_to_tablename fieldname:string
|
376
|
+
# bin/rails generate migration add_fieldname_to_tablename fieldname:string
|
350
377
|
#
|
351
378
|
# This will generate the file <tt>timestamp_add_fieldname_to_tablename.rb</tt>, which will look like this:
|
352
|
-
# class AddFieldnameToTablename < ActiveRecord::Migration[
|
379
|
+
# class AddFieldnameToTablename < ActiveRecord::Migration[6.0]
|
353
380
|
# def change
|
354
381
|
# add_column :tablenames, :fieldname, :string
|
355
382
|
# end
|
356
383
|
# end
|
357
384
|
#
|
358
385
|
# To run migrations against the currently configured database, use
|
359
|
-
# <tt>rails db:migrate</tt>. This will update the database by running all of the
|
386
|
+
# <tt>bin/rails db:migrate</tt>. This will update the database by running all of the
|
360
387
|
# pending migrations, creating the <tt>schema_migrations</tt> table
|
361
388
|
# (see "About the schema_migrations table" section below) if missing. It will also
|
362
389
|
# invoke the db:schema:dump command, which will update your db/schema.rb file
|
363
390
|
# to match the structure of your database.
|
364
391
|
#
|
365
392
|
# To roll the database back to a previous migration version, use
|
366
|
-
# <tt>rails db:rollback VERSION=X</tt> where <tt>X</tt> is the version to which
|
393
|
+
# <tt>bin/rails db:rollback VERSION=X</tt> where <tt>X</tt> is the version to which
|
367
394
|
# you wish to downgrade. Alternatively, you can also use the STEP option if you
|
368
|
-
# wish to rollback last few migrations. <tt>rails db:rollback STEP=2</tt> will rollback
|
395
|
+
# wish to rollback last few migrations. <tt>bin/rails db:rollback STEP=2</tt> will rollback
|
369
396
|
# the latest two migrations.
|
370
397
|
#
|
371
398
|
# If any of the migrations throw an <tt>ActiveRecord::IrreversibleMigration</tt> exception,
|
372
399
|
# that step will fail and you'll have some manual work to do.
|
373
400
|
#
|
374
|
-
# == Database support
|
375
|
-
#
|
376
|
-
# Migrations are currently supported in MySQL, PostgreSQL, SQLite,
|
377
|
-
# SQL Server, and Oracle (all supported databases except DB2).
|
378
|
-
#
|
379
401
|
# == More examples
|
380
402
|
#
|
381
403
|
# Not all migrations change the schema. Some just fix the data:
|
382
404
|
#
|
383
|
-
# class RemoveEmptyTags < ActiveRecord::Migration[
|
405
|
+
# class RemoveEmptyTags < ActiveRecord::Migration[6.0]
|
384
406
|
# def up
|
385
407
|
# Tag.all.each { |tag| tag.destroy if tag.pages.empty? }
|
386
408
|
# end
|
@@ -393,7 +415,7 @@ module ActiveRecord
|
|
393
415
|
#
|
394
416
|
# Others remove columns when they migrate up instead of down:
|
395
417
|
#
|
396
|
-
# class RemoveUnnecessaryItemAttributes < ActiveRecord::Migration[
|
418
|
+
# class RemoveUnnecessaryItemAttributes < ActiveRecord::Migration[6.0]
|
397
419
|
# def up
|
398
420
|
# remove_column :items, :incomplete_items_count
|
399
421
|
# remove_column :items, :completed_items_count
|
@@ -407,7 +429,7 @@ module ActiveRecord
|
|
407
429
|
#
|
408
430
|
# And sometimes you need to do something in SQL not abstracted directly by migrations:
|
409
431
|
#
|
410
|
-
# class MakeJoinUnique < ActiveRecord::Migration[
|
432
|
+
# class MakeJoinUnique < ActiveRecord::Migration[6.0]
|
411
433
|
# def up
|
412
434
|
# execute "ALTER TABLE `pages_linked_pages` ADD UNIQUE `page_id_linked_page_id` (`page_id`,`linked_page_id`)"
|
413
435
|
# end
|
@@ -424,7 +446,7 @@ module ActiveRecord
|
|
424
446
|
# <tt>Base#reset_column_information</tt> in order to ensure that the model has the
|
425
447
|
# latest column data from after the new column was added. Example:
|
426
448
|
#
|
427
|
-
# class AddPeopleSalary < ActiveRecord::Migration[
|
449
|
+
# class AddPeopleSalary < ActiveRecord::Migration[6.0]
|
428
450
|
# def up
|
429
451
|
# add_column :people, :salary, :integer
|
430
452
|
# Person.reset_column_information
|
@@ -482,7 +504,7 @@ module ActiveRecord
|
|
482
504
|
# To define a reversible migration, define the +change+ method in your
|
483
505
|
# migration like this:
|
484
506
|
#
|
485
|
-
# class TenderloveMigration < ActiveRecord::Migration[
|
507
|
+
# class TenderloveMigration < ActiveRecord::Migration[6.0]
|
486
508
|
# def change
|
487
509
|
# create_table(:horses) do |t|
|
488
510
|
# t.column :content, :text
|
@@ -512,7 +534,7 @@ module ActiveRecord
|
|
512
534
|
# can't execute inside a transaction though, and for these situations
|
513
535
|
# you can turn the automatic transactions off.
|
514
536
|
#
|
515
|
-
# class ChangeEnum < ActiveRecord::Migration[
|
537
|
+
# class ChangeEnum < ActiveRecord::Migration[6.0]
|
516
538
|
# disable_ddl_transaction!
|
517
539
|
#
|
518
540
|
# def up
|
@@ -525,6 +547,7 @@ module ActiveRecord
|
|
525
547
|
class Migration
|
526
548
|
autoload :CommandRecorder, "active_record/migration/command_recorder"
|
527
549
|
autoload :Compatibility, "active_record/migration/compatibility"
|
550
|
+
autoload :JoinTable, "active_record/migration/join_table"
|
528
551
|
|
529
552
|
# This must be defined before the inherited hook, below
|
530
553
|
class Current < Migration #:nodoc:
|
@@ -553,21 +576,37 @@ module ActiveRecord
|
|
553
576
|
# This class is used to verify that all migrations have been run before
|
554
577
|
# loading a web page if <tt>config.active_record.migration_error</tt> is set to :page_load
|
555
578
|
class CheckPending
|
556
|
-
def initialize(app)
|
579
|
+
def initialize(app, file_watcher: ActiveSupport::FileUpdateChecker)
|
557
580
|
@app = app
|
558
|
-
@
|
581
|
+
@needs_check = true
|
582
|
+
@mutex = Mutex.new
|
583
|
+
@file_watcher = file_watcher
|
559
584
|
end
|
560
585
|
|
561
586
|
def call(env)
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
587
|
+
@mutex.synchronize do
|
588
|
+
@watcher ||= build_watcher do
|
589
|
+
@needs_check = true
|
590
|
+
ActiveRecord::Migration.check_pending!(connection)
|
591
|
+
@needs_check = false
|
592
|
+
end
|
593
|
+
|
594
|
+
if @needs_check
|
595
|
+
@watcher.execute
|
596
|
+
else
|
597
|
+
@watcher.execute_if_updated
|
598
|
+
end
|
566
599
|
end
|
600
|
+
|
567
601
|
@app.call(env)
|
568
602
|
end
|
569
603
|
|
570
604
|
private
|
605
|
+
def build_watcher(&block)
|
606
|
+
paths = Array(connection.migration_context.migrations_paths)
|
607
|
+
@file_watcher.new([], paths.index_with(["rb"]), &block)
|
608
|
+
end
|
609
|
+
|
571
610
|
def connection
|
572
611
|
ActiveRecord::Base.connection
|
573
612
|
end
|
@@ -587,11 +626,11 @@ module ActiveRecord
|
|
587
626
|
end
|
588
627
|
|
589
628
|
def load_schema_if_pending!
|
590
|
-
|
629
|
+
current_db_config = Base.connection_db_config
|
591
630
|
all_configs = ActiveRecord::Base.configurations.configs_for(env_name: Rails.env)
|
592
631
|
|
593
632
|
needs_update = !all_configs.all? do |db_config|
|
594
|
-
Tasks::DatabaseTasks.schema_up_to_date?(db_config
|
633
|
+
Tasks::DatabaseTasks.schema_up_to_date?(db_config, ActiveRecord::Base.schema_format)
|
595
634
|
end
|
596
635
|
|
597
636
|
if needs_update
|
@@ -604,7 +643,7 @@ module ActiveRecord
|
|
604
643
|
end
|
605
644
|
|
606
645
|
# Establish a new connection, the old database may be gone (db:test:prepare uses purge)
|
607
|
-
Base.establish_connection(
|
646
|
+
Base.establish_connection(current_db_config)
|
608
647
|
|
609
648
|
check_pending!
|
610
649
|
end
|
@@ -657,7 +696,7 @@ module ActiveRecord
|
|
657
696
|
# and create the table 'apples' on the way up, and the reverse
|
658
697
|
# on the way down.
|
659
698
|
#
|
660
|
-
# class FixTLMigration < ActiveRecord::Migration[
|
699
|
+
# class FixTLMigration < ActiveRecord::Migration[6.0]
|
661
700
|
# def change
|
662
701
|
# revert do
|
663
702
|
# create_table(:horses) do |t|
|
@@ -674,9 +713,9 @@ module ActiveRecord
|
|
674
713
|
# Or equivalently, if +TenderloveMigration+ is defined as in the
|
675
714
|
# documentation for Migration:
|
676
715
|
#
|
677
|
-
# require_relative
|
716
|
+
# require_relative "20121212123456_tenderlove_migration"
|
678
717
|
#
|
679
|
-
# class FixupTLMigration < ActiveRecord::Migration[
|
718
|
+
# class FixupTLMigration < ActiveRecord::Migration[6.0]
|
680
719
|
# def change
|
681
720
|
# revert TenderloveMigration
|
682
721
|
#
|
@@ -727,7 +766,7 @@ module ActiveRecord
|
|
727
766
|
# when the three columns 'first_name', 'last_name' and 'full_name' exist,
|
728
767
|
# even when migrating down:
|
729
768
|
#
|
730
|
-
# class SplitNameMigration < ActiveRecord::Migration[
|
769
|
+
# class SplitNameMigration < ActiveRecord::Migration[6.0]
|
731
770
|
# def change
|
732
771
|
# add_column :users, :first_name, :string
|
733
772
|
# add_column :users, :last_name, :string
|
@@ -755,7 +794,7 @@ module ActiveRecord
|
|
755
794
|
# In the following example, the new column +published+ will be given
|
756
795
|
# the value +true+ for all existing records.
|
757
796
|
#
|
758
|
-
# class AddPublishedToPosts < ActiveRecord::Migration[
|
797
|
+
# class AddPublishedToPosts < ActiveRecord::Migration[6.0]
|
759
798
|
# def change
|
760
799
|
# add_column :posts, :published, :boolean, default: false
|
761
800
|
# up_only do
|
@@ -828,7 +867,7 @@ module ActiveRecord
|
|
828
867
|
change
|
829
868
|
end
|
830
869
|
else
|
831
|
-
|
870
|
+
public_send(direction)
|
832
871
|
end
|
833
872
|
ensure
|
834
873
|
@connection = nil
|
@@ -995,10 +1034,6 @@ module ActiveRecord
|
|
995
1034
|
File.basename(filename)
|
996
1035
|
end
|
997
1036
|
|
998
|
-
def mtime
|
999
|
-
File.mtime filename
|
1000
|
-
end
|
1001
|
-
|
1002
1037
|
delegate :migrate, :announce, :write, :disable_ddl_transaction, to: :migration
|
1003
1038
|
|
1004
1039
|
private
|
@@ -1012,16 +1047,6 @@ module ActiveRecord
|
|
1012
1047
|
end
|
1013
1048
|
end
|
1014
1049
|
|
1015
|
-
class NullMigration < MigrationProxy #:nodoc:
|
1016
|
-
def initialize
|
1017
|
-
super(nil, 0, nil, nil)
|
1018
|
-
end
|
1019
|
-
|
1020
|
-
def mtime
|
1021
|
-
0
|
1022
|
-
end
|
1023
|
-
end
|
1024
|
-
|
1025
1050
|
class MigrationContext #:nodoc:
|
1026
1051
|
attr_reader :migrations_paths, :schema_migration
|
1027
1052
|
|
@@ -1100,10 +1125,6 @@ module ActiveRecord
|
|
1100
1125
|
migrations.any?
|
1101
1126
|
end
|
1102
1127
|
|
1103
|
-
def last_migration #:nodoc:
|
1104
|
-
migrations.last || NullMigration.new
|
1105
|
-
end
|
1106
|
-
|
1107
1128
|
def migrations
|
1108
1129
|
migrations = migration_files.map do |file|
|
1109
1130
|
version, name, scope = parse_migration_filename(file)
|
@@ -1144,6 +1165,7 @@ module ActiveRecord
|
|
1144
1165
|
end
|
1145
1166
|
|
1146
1167
|
def last_stored_environment
|
1168
|
+
return nil unless ActiveRecord::InternalMetadata.enabled?
|
1147
1169
|
return nil if current_version == 0
|
1148
1170
|
raise NoEnvironmentInSchemaError unless ActiveRecord::InternalMetadata.table_exists?
|
1149
1171
|
|
@@ -1178,7 +1200,7 @@ module ActiveRecord
|
|
1178
1200
|
|
1179
1201
|
finish = migrator.migrations[start_index + steps]
|
1180
1202
|
version = finish ? finish.version : 0
|
1181
|
-
|
1203
|
+
public_send(direction, version)
|
1182
1204
|
end
|
1183
1205
|
end
|
1184
1206
|
|
@@ -1265,7 +1287,7 @@ module ActiveRecord
|
|
1265
1287
|
def run_without_lock
|
1266
1288
|
migration = migrations.detect { |m| m.version == @target_version }
|
1267
1289
|
raise UnknownMigrationVersionError.new(@target_version) if migration.nil?
|
1268
|
-
result = execute_migration_in_transaction(migration
|
1290
|
+
result = execute_migration_in_transaction(migration)
|
1269
1291
|
|
1270
1292
|
record_environment
|
1271
1293
|
result
|
@@ -1277,10 +1299,7 @@ module ActiveRecord
|
|
1277
1299
|
raise UnknownMigrationVersionError.new(@target_version)
|
1278
1300
|
end
|
1279
1301
|
|
1280
|
-
result = runnable.each
|
1281
|
-
execute_migration_in_transaction(migration, @direction)
|
1282
|
-
end
|
1283
|
-
|
1302
|
+
result = runnable.each(&method(:execute_migration_in_transaction))
|
1284
1303
|
record_environment
|
1285
1304
|
result
|
1286
1305
|
end
|
@@ -1300,14 +1319,14 @@ module ActiveRecord
|
|
1300
1319
|
@target_version && @target_version != 0 && !target
|
1301
1320
|
end
|
1302
1321
|
|
1303
|
-
def execute_migration_in_transaction(migration
|
1322
|
+
def execute_migration_in_transaction(migration)
|
1304
1323
|
return if down? && !migrated.include?(migration.version.to_i)
|
1305
1324
|
return if up? && migrated.include?(migration.version.to_i)
|
1306
1325
|
|
1307
1326
|
Base.logger.info "Migrating to #{migration.name} (#{migration.version})" if Base.logger
|
1308
1327
|
|
1309
1328
|
ddl_transaction(migration) do
|
1310
|
-
migration.migrate(direction)
|
1329
|
+
migration.migrate(@direction)
|
1311
1330
|
record_version_state_after_migrating(migration.version)
|
1312
1331
|
end
|
1313
1332
|
rescue => e
|
@@ -1374,20 +1393,31 @@ module ActiveRecord
|
|
1374
1393
|
|
1375
1394
|
def with_advisory_lock
|
1376
1395
|
lock_id = generate_migrator_advisory_lock_id
|
1377
|
-
|
1378
|
-
|
1379
|
-
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
|
1396
|
+
|
1397
|
+
with_advisory_lock_connection do |connection|
|
1398
|
+
got_lock = connection.get_advisory_lock(lock_id)
|
1399
|
+
raise ConcurrentMigrationError unless got_lock
|
1400
|
+
load_migrated # reload schema_migrations to be sure it wasn't changed by another process before we got the lock
|
1401
|
+
yield
|
1402
|
+
ensure
|
1403
|
+
if got_lock && !connection.release_advisory_lock(lock_id)
|
1404
|
+
raise ConcurrentMigrationError.new(
|
1405
|
+
ConcurrentMigrationError::RELEASE_LOCK_FAILED_MESSAGE
|
1406
|
+
)
|
1407
|
+
end
|
1388
1408
|
end
|
1389
1409
|
end
|
1390
1410
|
|
1411
|
+
def with_advisory_lock_connection
|
1412
|
+
pool = ActiveRecord::ConnectionAdapters::ConnectionHandler.new.establish_connection(
|
1413
|
+
ActiveRecord::Base.connection_db_config
|
1414
|
+
)
|
1415
|
+
|
1416
|
+
pool.with_connection { |connection| yield(connection) }
|
1417
|
+
ensure
|
1418
|
+
pool&.disconnect!
|
1419
|
+
end
|
1420
|
+
|
1391
1421
|
MIGRATOR_SALT = 2053462845
|
1392
1422
|
def generate_migrator_advisory_lock_id
|
1393
1423
|
db_name_hash = Zlib.crc32(Base.connection.current_database)
|
@@ -115,8 +115,17 @@ module ActiveRecord
|
|
115
115
|
#
|
116
116
|
# Sets the column to sort records by when no explicit order clause is used
|
117
117
|
# during an ordered finder call. Useful when the primary key is not an
|
118
|
-
# auto-incrementing integer, for example when it's a UUID.
|
119
|
-
#
|
118
|
+
# auto-incrementing integer, for example when it's a UUID. Records are subsorted
|
119
|
+
# by the primary key if it exists to ensure deterministic results.
|
120
|
+
|
121
|
+
##
|
122
|
+
# :singleton-method: immutable_strings_by_default=
|
123
|
+
# :call-seq: immutable_strings_by_default=(bool)
|
124
|
+
#
|
125
|
+
# Determines whether columns should infer their type as +:string+ or
|
126
|
+
# +:immutable_string+. This setting does not affect the behavior of
|
127
|
+
# <tt>attribute :foo, :string</tt>. Defaults to false.
|
128
|
+
|
120
129
|
included do
|
121
130
|
mattr_accessor :primary_key_prefix_type, instance_writer: false
|
122
131
|
|
@@ -126,12 +135,13 @@ module ActiveRecord
|
|
126
135
|
class_attribute :internal_metadata_table_name, instance_accessor: false, default: "ar_internal_metadata"
|
127
136
|
class_attribute :pluralize_table_names, instance_writer: false, default: true
|
128
137
|
class_attribute :implicit_order_column, instance_accessor: false
|
138
|
+
class_attribute :immutable_strings_by_default, instance_accessor: false
|
129
139
|
|
130
140
|
self.protected_environments = ["production"]
|
131
141
|
self.inheritance_column = "type"
|
132
142
|
self.ignored_columns = [].freeze
|
133
143
|
|
134
|
-
delegate :type_for_attribute, to: :class
|
144
|
+
delegate :type_for_attribute, :column_for_attribute, to: :class
|
135
145
|
|
136
146
|
initialize_load_schema_monitor
|
137
147
|
end
|
@@ -306,7 +316,7 @@ module ActiveRecord
|
|
306
316
|
# self.ignored_columns = [:category]
|
307
317
|
# end
|
308
318
|
#
|
309
|
-
# The schema still contains
|
319
|
+
# The schema still contains "category", but now the model omits it, so any meta-driven code or
|
310
320
|
# schema caching will not attempt to use the column:
|
311
321
|
#
|
312
322
|
# Project.columns_hash["category"] => nil
|
@@ -317,7 +327,8 @@ module ActiveRecord
|
|
317
327
|
# user = Project.create!(name: "First Project")
|
318
328
|
# user.category # => raises NoMethodError
|
319
329
|
def ignored_columns=(columns)
|
320
|
-
|
330
|
+
reload_schema_from_cache
|
331
|
+
@ignored_columns = columns.map(&:to_s).freeze
|
321
332
|
end
|
322
333
|
|
323
334
|
def sequence_name
|
@@ -384,7 +395,7 @@ module ActiveRecord
|
|
384
395
|
|
385
396
|
def columns
|
386
397
|
load_schema
|
387
|
-
@columns ||= columns_hash.values
|
398
|
+
@columns ||= columns_hash.values.freeze
|
388
399
|
end
|
389
400
|
|
390
401
|
def attribute_types # :nodoc:
|
@@ -409,6 +420,8 @@ module ActiveRecord
|
|
409
420
|
# a string or a symbol.
|
410
421
|
def type_for_attribute(attr_name, &block)
|
411
422
|
attr_name = attr_name.to_s
|
423
|
+
attr_name = attribute_aliases[attr_name] || attr_name
|
424
|
+
|
412
425
|
if block
|
413
426
|
attribute_types.fetch(attr_name, &block)
|
414
427
|
else
|
@@ -416,11 +429,31 @@ module ActiveRecord
|
|
416
429
|
end
|
417
430
|
end
|
418
431
|
|
432
|
+
# Returns the column object for the named attribute.
|
433
|
+
# Returns an +ActiveRecord::ConnectionAdapters::NullColumn+ if the
|
434
|
+
# named attribute does not exist.
|
435
|
+
#
|
436
|
+
# class Person < ActiveRecord::Base
|
437
|
+
# end
|
438
|
+
#
|
439
|
+
# person = Person.new
|
440
|
+
# person.column_for_attribute(:name) # the result depends on the ConnectionAdapter
|
441
|
+
# # => #<ActiveRecord::ConnectionAdapters::Column:0x007ff4ab083980 @name="name", @sql_type="varchar(255)", @null=true, ...>
|
442
|
+
#
|
443
|
+
# person.column_for_attribute(:nothing)
|
444
|
+
# # => #<ActiveRecord::ConnectionAdapters::NullColumn:0xXXX @name=nil, @sql_type=nil, @cast_type=#<Type::Value>, ...>
|
445
|
+
def column_for_attribute(name)
|
446
|
+
name = name.to_s
|
447
|
+
columns_hash.fetch(name) do
|
448
|
+
ConnectionAdapters::NullColumn.new(name)
|
449
|
+
end
|
450
|
+
end
|
451
|
+
|
419
452
|
# Returns a hash where the keys are column names and the values are
|
420
453
|
# default values when instantiating the Active Record object for this table.
|
421
454
|
def column_defaults
|
422
455
|
load_schema
|
423
|
-
@column_defaults ||= _default_attributes.deep_dup.to_hash
|
456
|
+
@column_defaults ||= _default_attributes.deep_dup.to_hash.freeze
|
424
457
|
end
|
425
458
|
|
426
459
|
def _default_attributes # :nodoc:
|
@@ -430,7 +463,7 @@ module ActiveRecord
|
|
430
463
|
|
431
464
|
# Returns an array of column names as strings.
|
432
465
|
def column_names
|
433
|
-
@column_names ||= columns.map(&:name)
|
466
|
+
@column_names ||= columns.map(&:name).freeze
|
434
467
|
end
|
435
468
|
|
436
469
|
def symbol_column_to_string(name_symbol) # :nodoc:
|
@@ -444,9 +477,8 @@ module ActiveRecord
|
|
444
477
|
@content_columns ||= columns.reject do |c|
|
445
478
|
c.name == primary_key ||
|
446
479
|
c.name == inheritance_column ||
|
447
|
-
c.name.end_with?("_id")
|
448
|
-
|
449
|
-
end
|
480
|
+
c.name.end_with?("_id", "_count")
|
481
|
+
end.freeze
|
450
482
|
end
|
451
483
|
|
452
484
|
# Resets all the cached information about columns, which will cause them
|
@@ -456,7 +488,7 @@ module ActiveRecord
|
|
456
488
|
# when just after creating a table you want to populate it with some default
|
457
489
|
# values, eg:
|
458
490
|
#
|
459
|
-
# class CreateJobLevels < ActiveRecord::Migration[
|
491
|
+
# class CreateJobLevels < ActiveRecord::Migration[6.0]
|
460
492
|
# def up
|
461
493
|
# create_table :job_levels do |t|
|
462
494
|
# t.integer :id
|
@@ -514,11 +546,20 @@ module ActiveRecord
|
|
514
546
|
end
|
515
547
|
|
516
548
|
def load_schema!
|
517
|
-
|
549
|
+
unless table_name
|
550
|
+
raise ActiveRecord::TableNotSpecified, "#{self} has no table configured. Set one with #{self}.table_name="
|
551
|
+
end
|
552
|
+
|
553
|
+
columns_hash = connection.schema_cache.columns_hash(table_name)
|
554
|
+
columns_hash = columns_hash.except(*ignored_columns) unless ignored_columns.empty?
|
555
|
+
@columns_hash = columns_hash.freeze
|
518
556
|
@columns_hash.each do |name, column|
|
557
|
+
type = connection.lookup_cast_type_from_column(column)
|
558
|
+
type = _convert_type_from_options(type)
|
559
|
+
warn_if_deprecated_type(column)
|
519
560
|
define_attribute(
|
520
561
|
name,
|
521
|
-
|
562
|
+
type,
|
522
563
|
default: column.default,
|
523
564
|
user_provided_default: false
|
524
565
|
)
|
@@ -567,6 +608,40 @@ module ActiveRecord
|
|
567
608
|
base_class.table_name
|
568
609
|
end
|
569
610
|
end
|
611
|
+
|
612
|
+
def _convert_type_from_options(type)
|
613
|
+
if immutable_strings_by_default && type.respond_to?(:to_immutable_string)
|
614
|
+
type.to_immutable_string
|
615
|
+
else
|
616
|
+
type
|
617
|
+
end
|
618
|
+
end
|
619
|
+
|
620
|
+
def warn_if_deprecated_type(column)
|
621
|
+
return if attributes_to_define_after_schema_loads.key?(column.name)
|
622
|
+
return unless column.respond_to?(:oid)
|
623
|
+
|
624
|
+
if column.array?
|
625
|
+
array_arguments = ", array: true"
|
626
|
+
else
|
627
|
+
array_arguments = ""
|
628
|
+
end
|
629
|
+
|
630
|
+
if column.sql_type.start_with?("interval")
|
631
|
+
precision_arguments = column.precision.presence && ", precision: #{column.precision}"
|
632
|
+
ActiveSupport::Deprecation.warn(<<~WARNING)
|
633
|
+
The behavior of the `:interval` type will be changing in Rails 7.0
|
634
|
+
to return an `ActiveSupport::Duration` object. If you'd like to keep
|
635
|
+
the old behavior, you can add this line to #{self.name} model:
|
636
|
+
|
637
|
+
attribute :#{column.name}, :string#{precision_arguments}#{array_arguments}
|
638
|
+
|
639
|
+
If you'd like the new behavior today, you can add this line:
|
640
|
+
|
641
|
+
attribute :#{column.name}, :interval#{precision_arguments}#{array_arguments}
|
642
|
+
WARNING
|
643
|
+
end
|
644
|
+
end
|
570
645
|
end
|
571
646
|
end
|
572
647
|
end
|