activerecord 7.0.8.7 → 7.1.0.beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1339 -1572
- data/MIT-LICENSE +1 -1
- data/README.rdoc +15 -16
- data/lib/active_record/aggregations.rb +16 -13
- data/lib/active_record/association_relation.rb +1 -1
- data/lib/active_record/associations/association.rb +18 -3
- data/lib/active_record/associations/association_scope.rb +16 -9
- data/lib/active_record/associations/belongs_to_association.rb +14 -6
- data/lib/active_record/associations/builder/association.rb +3 -3
- data/lib/active_record/associations/builder/belongs_to.rb +21 -8
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +1 -5
- data/lib/active_record/associations/builder/singular_association.rb +4 -0
- data/lib/active_record/associations/collection_association.rb +17 -9
- data/lib/active_record/associations/collection_proxy.rb +16 -11
- data/lib/active_record/associations/foreign_association.rb +10 -3
- data/lib/active_record/associations/has_many_association.rb +20 -13
- data/lib/active_record/associations/has_many_through_association.rb +10 -6
- data/lib/active_record/associations/has_one_association.rb +10 -3
- data/lib/active_record/associations/join_dependency.rb +10 -8
- data/lib/active_record/associations/preloader/association.rb +27 -6
- data/lib/active_record/associations/preloader.rb +12 -9
- data/lib/active_record/associations/singular_association.rb +1 -1
- data/lib/active_record/associations/through_association.rb +22 -11
- data/lib/active_record/associations.rb +193 -97
- data/lib/active_record/attribute_assignment.rb +0 -2
- data/lib/active_record/attribute_methods/before_type_cast.rb +17 -0
- data/lib/active_record/attribute_methods/dirty.rb +40 -26
- data/lib/active_record/attribute_methods/primary_key.rb +76 -24
- data/lib/active_record/attribute_methods/query.rb +28 -16
- data/lib/active_record/attribute_methods/read.rb +18 -5
- data/lib/active_record/attribute_methods/serialization.rb +150 -31
- data/lib/active_record/attribute_methods/write.rb +3 -3
- data/lib/active_record/attribute_methods.rb +105 -21
- data/lib/active_record/attributes.rb +3 -3
- data/lib/active_record/autosave_association.rb +55 -9
- data/lib/active_record/base.rb +7 -2
- data/lib/active_record/callbacks.rb +10 -24
- data/lib/active_record/coders/column_serializer.rb +61 -0
- data/lib/active_record/coders/json.rb +1 -1
- data/lib/active_record/coders/yaml_column.rb +70 -42
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +163 -88
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +2 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +3 -1
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +63 -43
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +5 -0
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +109 -32
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +60 -22
- data/lib/active_record/connection_adapters/abstract/quoting.rb +41 -6
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +4 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +18 -4
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +137 -11
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +289 -122
- data/lib/active_record/connection_adapters/abstract/transaction.rb +280 -58
- data/lib/active_record/connection_adapters/abstract_adapter.rb +502 -91
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +200 -108
- data/lib/active_record/connection_adapters/column.rb +9 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +1 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +22 -143
- data/lib/active_record/connection_adapters/mysql/quoting.rb +16 -12
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +9 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +6 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +1 -1
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +17 -12
- data/lib/active_record/connection_adapters/mysql2/database_statements.rb +148 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +98 -53
- data/lib/active_record/connection_adapters/pool_config.rb +14 -5
- data/lib/active_record/connection_adapters/pool_manager.rb +19 -9
- data/lib/active_record/connection_adapters/postgresql/column.rb +1 -2
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +76 -29
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +11 -2
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +9 -6
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +3 -9
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +76 -6
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +131 -2
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +42 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +351 -54
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +336 -168
- data/lib/active_record/connection_adapters/schema_cache.rb +287 -59
- data/lib/active_record/connection_adapters/sqlite3/column.rb +49 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +42 -36
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +4 -3
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +1 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +26 -7
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +162 -77
- data/lib/active_record/connection_adapters/statement_pool.rb +7 -0
- data/lib/active_record/connection_adapters/trilogy/database_statements.rb +98 -0
- data/lib/active_record/connection_adapters/trilogy_adapter.rb +254 -0
- data/lib/active_record/connection_adapters.rb +3 -1
- data/lib/active_record/connection_handling.rb +71 -94
- data/lib/active_record/core.rb +128 -138
- data/lib/active_record/counter_cache.rb +46 -25
- data/lib/active_record/database_configurations/database_config.rb +9 -3
- data/lib/active_record/database_configurations/hash_config.rb +22 -12
- data/lib/active_record/database_configurations/url_config.rb +17 -11
- data/lib/active_record/database_configurations.rb +86 -33
- data/lib/active_record/delegated_type.rb +8 -3
- data/lib/active_record/deprecator.rb +7 -0
- data/lib/active_record/destroy_association_async_job.rb +2 -0
- data/lib/active_record/encryption/auto_filtered_parameters.rb +66 -0
- data/lib/active_record/encryption/cipher/aes256_gcm.rb +4 -1
- data/lib/active_record/encryption/config.rb +25 -1
- data/lib/active_record/encryption/configurable.rb +12 -19
- data/lib/active_record/encryption/context.rb +10 -3
- data/lib/active_record/encryption/contexts.rb +5 -1
- data/lib/active_record/encryption/derived_secret_key_provider.rb +8 -2
- data/lib/active_record/encryption/encryptable_record.rb +36 -18
- data/lib/active_record/encryption/encrypted_attribute_type.rb +17 -6
- data/lib/active_record/encryption/extended_deterministic_queries.rb +66 -54
- data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +2 -2
- data/lib/active_record/encryption/key_generator.rb +12 -1
- data/lib/active_record/encryption/message_serializer.rb +2 -0
- data/lib/active_record/encryption/properties.rb +3 -3
- data/lib/active_record/encryption/scheme.rb +19 -22
- data/lib/active_record/encryption.rb +1 -0
- data/lib/active_record/enum.rb +113 -26
- data/lib/active_record/errors.rb +89 -15
- data/lib/active_record/explain.rb +23 -3
- data/lib/active_record/fixture_set/model_metadata.rb +14 -4
- data/lib/active_record/fixture_set/render_context.rb +2 -0
- data/lib/active_record/fixture_set/table_row.rb +29 -8
- data/lib/active_record/fixtures.rb +119 -71
- data/lib/active_record/future_result.rb +30 -5
- data/lib/active_record/gem_version.rb +4 -4
- data/lib/active_record/inheritance.rb +30 -16
- data/lib/active_record/insert_all.rb +55 -8
- data/lib/active_record/integration.rb +8 -8
- data/lib/active_record/internal_metadata.rb +118 -30
- data/lib/active_record/locking/pessimistic.rb +5 -2
- data/lib/active_record/log_subscriber.rb +29 -12
- data/lib/active_record/marshalling.rb +56 -0
- data/lib/active_record/message_pack.rb +124 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +4 -0
- data/lib/active_record/middleware/database_selector.rb +5 -7
- data/lib/active_record/middleware/shard_selector.rb +3 -1
- data/lib/active_record/migration/command_recorder.rb +100 -4
- data/lib/active_record/migration/compatibility.rb +131 -5
- data/lib/active_record/migration/default_strategy.rb +23 -0
- data/lib/active_record/migration/execution_strategy.rb +19 -0
- data/lib/active_record/migration.rb +213 -109
- data/lib/active_record/model_schema.rb +47 -27
- data/lib/active_record/nested_attributes.rb +28 -3
- data/lib/active_record/normalization.rb +158 -0
- data/lib/active_record/persistence.rb +183 -33
- data/lib/active_record/promise.rb +84 -0
- data/lib/active_record/query_cache.rb +3 -21
- data/lib/active_record/query_logs.rb +77 -52
- data/lib/active_record/query_logs_formatter.rb +41 -0
- data/lib/active_record/querying.rb +15 -2
- data/lib/active_record/railtie.rb +107 -45
- data/lib/active_record/railties/controller_runtime.rb +10 -5
- data/lib/active_record/railties/databases.rake +139 -145
- data/lib/active_record/railties/job_runtime.rb +23 -0
- data/lib/active_record/readonly_attributes.rb +32 -5
- data/lib/active_record/reflection.rb +169 -45
- data/lib/active_record/relation/batches/batch_enumerator.rb +5 -3
- data/lib/active_record/relation/batches.rb +190 -61
- data/lib/active_record/relation/calculations.rb +152 -63
- data/lib/active_record/relation/delegation.rb +22 -8
- data/lib/active_record/relation/finder_methods.rb +85 -15
- data/lib/active_record/relation/merger.rb +2 -0
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +11 -2
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +5 -1
- data/lib/active_record/relation/predicate_builder.rb +26 -14
- data/lib/active_record/relation/query_attribute.rb +2 -1
- data/lib/active_record/relation/query_methods.rb +351 -62
- data/lib/active_record/relation/spawn_methods.rb +18 -1
- data/lib/active_record/relation.rb +76 -35
- data/lib/active_record/result.rb +19 -5
- data/lib/active_record/runtime_registry.rb +10 -1
- data/lib/active_record/sanitization.rb +51 -11
- data/lib/active_record/schema.rb +2 -3
- data/lib/active_record/schema_dumper.rb +41 -7
- data/lib/active_record/schema_migration.rb +68 -33
- data/lib/active_record/scoping/default.rb +15 -5
- data/lib/active_record/scoping/named.rb +2 -2
- data/lib/active_record/scoping.rb +2 -1
- data/lib/active_record/secure_password.rb +60 -0
- data/lib/active_record/secure_token.rb +21 -3
- data/lib/active_record/signed_id.rb +7 -5
- data/lib/active_record/store.rb +8 -8
- data/lib/active_record/suppressor.rb +3 -1
- data/lib/active_record/table_metadata.rb +10 -1
- data/lib/active_record/tasks/database_tasks.rb +127 -105
- data/lib/active_record/tasks/mysql_database_tasks.rb +15 -6
- data/lib/active_record/tasks/postgresql_database_tasks.rb +16 -13
- data/lib/active_record/tasks/sqlite_database_tasks.rb +14 -7
- data/lib/active_record/test_fixtures.rb +113 -96
- data/lib/active_record/timestamp.rb +26 -14
- data/lib/active_record/token_for.rb +113 -0
- data/lib/active_record/touch_later.rb +11 -6
- data/lib/active_record/transactions.rb +36 -10
- data/lib/active_record/type/adapter_specific_registry.rb +1 -8
- data/lib/active_record/type/internal/timezone.rb +7 -2
- data/lib/active_record/type/time.rb +4 -0
- data/lib/active_record/validations/absence.rb +1 -1
- data/lib/active_record/validations/numericality.rb +5 -4
- data/lib/active_record/validations/presence.rb +5 -28
- data/lib/active_record/validations/uniqueness.rb +47 -2
- data/lib/active_record/validations.rb +8 -4
- data/lib/active_record/version.rb +1 -1
- data/lib/active_record.rb +121 -16
- data/lib/arel/errors.rb +10 -0
- data/lib/arel/factory_methods.rb +4 -0
- data/lib/arel/nodes/binary.rb +6 -1
- data/lib/arel/nodes/bound_sql_literal.rb +61 -0
- data/lib/arel/nodes/cte.rb +36 -0
- data/lib/arel/nodes/fragments.rb +35 -0
- data/lib/arel/nodes/homogeneous_in.rb +0 -8
- data/lib/arel/nodes/leading_join.rb +8 -0
- data/lib/arel/nodes/node.rb +111 -2
- data/lib/arel/nodes/sql_literal.rb +6 -0
- data/lib/arel/nodes/table_alias.rb +4 -0
- data/lib/arel/nodes.rb +4 -0
- data/lib/arel/predications.rb +2 -0
- data/lib/arel/table.rb +9 -5
- data/lib/arel/visitors/mysql.rb +8 -1
- data/lib/arel/visitors/to_sql.rb +81 -17
- data/lib/arel/visitors/visitor.rb +2 -2
- data/lib/arel.rb +16 -2
- data/lib/rails/generators/active_record/application_record/USAGE +8 -0
- data/lib/rails/generators/active_record/migration.rb +3 -1
- data/lib/rails/generators/active_record/model/USAGE +113 -0
- data/lib/rails/generators/active_record/model/model_generator.rb +15 -6
- metadata +52 -17
- data/lib/active_record/connection_adapters/legacy_pool_manager.rb +0 -35
- data/lib/active_record/null_relation.rb +0 -63
@@ -2,13 +2,17 @@
|
|
2
2
|
|
3
3
|
module ActiveRecord
|
4
4
|
class Migration
|
5
|
-
#
|
5
|
+
# = \Migration Command Recorder
|
6
|
+
#
|
7
|
+
# +ActiveRecord::Migration::CommandRecorder+ records commands done during
|
6
8
|
# a migration and knows how to reverse those commands. The CommandRecorder
|
7
9
|
# knows how to invert the following commands:
|
8
10
|
#
|
9
11
|
# * add_column
|
10
12
|
# * add_foreign_key
|
11
13
|
# * add_check_constraint
|
14
|
+
# * add_exclusion_constraint
|
15
|
+
# * add_unique_key
|
12
16
|
# * add_index
|
13
17
|
# * add_reference
|
14
18
|
# * add_timestamps
|
@@ -16,9 +20,11 @@ module ActiveRecord
|
|
16
20
|
# * change_column_null
|
17
21
|
# * change_column_comment (must supply a +:from+ and +:to+ option)
|
18
22
|
# * change_table_comment (must supply a +:from+ and +:to+ option)
|
23
|
+
# * create_enum
|
19
24
|
# * create_join_table
|
20
25
|
# * create_table
|
21
26
|
# * disable_extension
|
27
|
+
# * drop_enum (must supply a list of values)
|
22
28
|
# * drop_join_table
|
23
29
|
# * drop_table (must supply a block)
|
24
30
|
# * enable_extension
|
@@ -26,10 +32,14 @@ module ActiveRecord
|
|
26
32
|
# * remove_columns (must supply a +:type+ option)
|
27
33
|
# * remove_foreign_key (must supply a second table)
|
28
34
|
# * remove_check_constraint
|
35
|
+
# * remove_exclusion_constraint
|
36
|
+
# * remove_unique_key
|
29
37
|
# * remove_index
|
30
38
|
# * remove_reference
|
31
39
|
# * remove_timestamps
|
32
40
|
# * rename_column
|
41
|
+
# * rename_enum (must supply a +:to+ option)
|
42
|
+
# * rename_enum_value (must supply a +:from+ and +:to+ option)
|
33
43
|
# * rename_index
|
34
44
|
# * rename_table
|
35
45
|
class CommandRecorder
|
@@ -41,7 +51,10 @@ module ActiveRecord
|
|
41
51
|
:change_column, :execute, :remove_columns, :change_column_null,
|
42
52
|
:add_foreign_key, :remove_foreign_key,
|
43
53
|
:change_column_comment, :change_table_comment,
|
44
|
-
:add_check_constraint, :remove_check_constraint
|
54
|
+
:add_check_constraint, :remove_check_constraint,
|
55
|
+
:add_exclusion_constraint, :remove_exclusion_constraint,
|
56
|
+
:add_unique_key, :remove_unique_key,
|
57
|
+
:create_enum, :drop_enum, :rename_enum, :add_enum_value, :rename_enum_value,
|
45
58
|
]
|
46
59
|
include JoinTable
|
47
60
|
|
@@ -117,7 +130,15 @@ module ActiveRecord
|
|
117
130
|
alias :remove_belongs_to :remove_reference
|
118
131
|
|
119
132
|
def change_table(table_name, **options) # :nodoc:
|
120
|
-
|
133
|
+
if delegate.supports_bulk_alter? && options[:bulk]
|
134
|
+
recorder = self.class.new(self.delegate)
|
135
|
+
recorder.reverting = @reverting
|
136
|
+
yield recorder.delegate.update_table_definition(table_name, recorder)
|
137
|
+
commands = recorder.commands
|
138
|
+
@commands << [:change_table, [table_name], -> t { bulk_change_table(table_name, commands) }]
|
139
|
+
else
|
140
|
+
yield delegate.update_table_definition(table_name, self)
|
141
|
+
end
|
121
142
|
end
|
122
143
|
|
123
144
|
def replay(migration)
|
@@ -139,7 +160,10 @@ module ActiveRecord
|
|
139
160
|
add_reference: :remove_reference,
|
140
161
|
add_foreign_key: :remove_foreign_key,
|
141
162
|
add_check_constraint: :remove_check_constraint,
|
142
|
-
|
163
|
+
add_exclusion_constraint: :remove_exclusion_constraint,
|
164
|
+
add_unique_key: :remove_unique_key,
|
165
|
+
enable_extension: :disable_extension,
|
166
|
+
create_enum: :drop_enum
|
143
167
|
}.each do |cmd, inv|
|
144
168
|
[[inv, cmd], [cmd, inv]].uniq.each do |method, inverse|
|
145
169
|
class_eval <<-EOV, __FILE__, __LINE__ + 1
|
@@ -164,7 +188,17 @@ module ActiveRecord
|
|
164
188
|
[:transaction, args, invertions_proc]
|
165
189
|
end
|
166
190
|
|
191
|
+
def invert_create_table(args, &block)
|
192
|
+
if args.last.is_a?(Hash)
|
193
|
+
args.last.delete(:if_not_exists)
|
194
|
+
end
|
195
|
+
super
|
196
|
+
end
|
197
|
+
|
167
198
|
def invert_drop_table(args, &block)
|
199
|
+
if args.last.is_a?(Hash)
|
200
|
+
args.last.delete(:if_exists)
|
201
|
+
end
|
168
202
|
if args.size == 1 && block == nil
|
169
203
|
raise ActiveRecord::IrreversibleMigration, "To avoid mistakes, drop_table is only reversible if given options or a block (can be empty)."
|
170
204
|
end
|
@@ -234,6 +268,11 @@ module ActiveRecord
|
|
234
268
|
[:change_column_null, args]
|
235
269
|
end
|
236
270
|
|
271
|
+
def invert_add_foreign_key(args)
|
272
|
+
args.last.delete(:validate) if args.last.is_a?(Hash)
|
273
|
+
super
|
274
|
+
end
|
275
|
+
|
237
276
|
def invert_remove_foreign_key(args)
|
238
277
|
options = args.extract_options!
|
239
278
|
from_table, to_table = args
|
@@ -268,11 +307,68 @@ module ActiveRecord
|
|
268
307
|
[:change_table_comment, [table, from: options[:to], to: options[:from]]]
|
269
308
|
end
|
270
309
|
|
310
|
+
def invert_add_check_constraint(args)
|
311
|
+
if (options = args.last).is_a?(Hash)
|
312
|
+
options.delete(:validate)
|
313
|
+
options[:if_exists] = options.delete(:if_not_exists) if options.key?(:if_not_exists)
|
314
|
+
end
|
315
|
+
super
|
316
|
+
end
|
317
|
+
|
271
318
|
def invert_remove_check_constraint(args)
|
272
319
|
raise ActiveRecord::IrreversibleMigration, "remove_check_constraint is only reversible if given an expression." if args.size < 2
|
320
|
+
|
321
|
+
if (options = args.last).is_a?(Hash)
|
322
|
+
options[:if_not_exists] = options.delete(:if_exists) if options.key?(:if_exists)
|
323
|
+
end
|
324
|
+
super
|
325
|
+
end
|
326
|
+
|
327
|
+
def invert_remove_exclusion_constraint(args)
|
328
|
+
raise ActiveRecord::IrreversibleMigration, "remove_exclusion_constraint is only reversible if given an expression." if args.size < 2
|
329
|
+
super
|
330
|
+
end
|
331
|
+
|
332
|
+
def invert_add_unique_key(args)
|
333
|
+
options = args.dup.extract_options!
|
334
|
+
|
335
|
+
raise ActiveRecord::IrreversibleMigration, "add_unique_key is not reversible if given an using_index." if options[:using_index]
|
273
336
|
super
|
274
337
|
end
|
275
338
|
|
339
|
+
def invert_remove_unique_key(args)
|
340
|
+
_table, columns = args.dup.tap(&:extract_options!)
|
341
|
+
|
342
|
+
raise ActiveRecord::IrreversibleMigration, "remove_unique_key is only reversible if given an column_name." if columns.blank?
|
343
|
+
super
|
344
|
+
end
|
345
|
+
|
346
|
+
def invert_drop_enum(args)
|
347
|
+
_enum, values = args.dup.tap(&:extract_options!)
|
348
|
+
raise ActiveRecord::IrreversibleMigration, "drop_enum is only reversible if given a list of enum values." unless values
|
349
|
+
super
|
350
|
+
end
|
351
|
+
|
352
|
+
def invert_rename_enum(args)
|
353
|
+
name, options = args
|
354
|
+
|
355
|
+
unless options.is_a?(Hash) && options.has_key?(:to)
|
356
|
+
raise ActiveRecord::IrreversibleMigration, "rename_enum is only reversible if given a :to option."
|
357
|
+
end
|
358
|
+
|
359
|
+
[:rename_enum, [options[:to], to: name]]
|
360
|
+
end
|
361
|
+
|
362
|
+
def invert_rename_enum_value(args)
|
363
|
+
type_name, options = args
|
364
|
+
|
365
|
+
unless options.is_a?(Hash) && options.has_key?(:from) && options.has_key?(:to)
|
366
|
+
raise ActiveRecord::IrreversibleMigration, "rename_enum_value is only reversible if given a :from and :to option."
|
367
|
+
end
|
368
|
+
|
369
|
+
[:rename_enum_value, [type_name, from: options[:to], to: options[:from]]]
|
370
|
+
end
|
371
|
+
|
276
372
|
def respond_to_missing?(method, _)
|
277
373
|
super || delegate.respond_to?(method)
|
278
374
|
end
|
@@ -21,8 +21,8 @@ module ActiveRecord
|
|
21
21
|
# New migration functionality that will never be backward compatible should be added directly to `ActiveRecord::Migration`.
|
22
22
|
#
|
23
23
|
# There are classes for each prior Rails version. Each class descends from the *next* Rails version, so:
|
24
|
-
#
|
25
|
-
# 5.2 < 6.0 < 6.1 < 7.0
|
24
|
+
# 7.0 < 7.1
|
25
|
+
# 5.2 < 6.0 < 6.1 < 7.0 < 7.1
|
26
26
|
#
|
27
27
|
# If you are introducing new migration functionality that should only apply from Rails 7 onward, then you should
|
28
28
|
# find the class that immediately precedes it (6.1), and override the relevant migration methods to undo your changes.
|
@@ -30,7 +30,117 @@ module ActiveRecord
|
|
30
30
|
# For example, Rails 6 added a default value for the `precision` option on datetime columns. So in this file, the `V5_2`
|
31
31
|
# class sets the value of `precision` to `nil` if it's not explicitly provided. This way, the default value will not apply
|
32
32
|
# for migrations written for 5.2, but will for migrations written for 6.0.
|
33
|
-
|
33
|
+
V7_1 = Current
|
34
|
+
|
35
|
+
class V7_0 < V7_1
|
36
|
+
module LegacyIndexName
|
37
|
+
private
|
38
|
+
def legacy_index_name(table_name, options)
|
39
|
+
if Hash === options
|
40
|
+
if options[:column]
|
41
|
+
"index_#{table_name}_on_#{Array(options[:column]) * '_and_'}"
|
42
|
+
elsif options[:name]
|
43
|
+
options[:name]
|
44
|
+
else
|
45
|
+
raise ArgumentError, "You must specify the index name"
|
46
|
+
end
|
47
|
+
else
|
48
|
+
legacy_index_name(table_name, index_name_options(options))
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def index_name_options(column_names)
|
53
|
+
if expression_column_name?(column_names)
|
54
|
+
column_names = column_names.scan(/\w+/).join("_")
|
55
|
+
end
|
56
|
+
|
57
|
+
{ column: column_names }
|
58
|
+
end
|
59
|
+
|
60
|
+
def expression_column_name?(column_name)
|
61
|
+
column_name.is_a?(String) && /\W/.match?(column_name)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
module TableDefinition
|
65
|
+
include LegacyIndexName
|
66
|
+
def column(name, type, **options)
|
67
|
+
options[:_skip_validate_options] = true
|
68
|
+
super
|
69
|
+
end
|
70
|
+
|
71
|
+
def change(name, type, **options)
|
72
|
+
options[:_skip_validate_options] = true
|
73
|
+
super
|
74
|
+
end
|
75
|
+
|
76
|
+
def index(column_name, **options)
|
77
|
+
options[:name] = legacy_index_name(name, column_name) if options[:name].nil?
|
78
|
+
super
|
79
|
+
end
|
80
|
+
|
81
|
+
private
|
82
|
+
def raise_on_if_exist_options(options)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
include LegacyIndexName
|
87
|
+
|
88
|
+
def add_column(table_name, column_name, type, **options)
|
89
|
+
options[:_skip_validate_options] = true
|
90
|
+
super
|
91
|
+
end
|
92
|
+
|
93
|
+
def add_index(table_name, column_name, **options)
|
94
|
+
options[:name] = legacy_index_name(table_name, column_name) if options[:name].nil?
|
95
|
+
super
|
96
|
+
end
|
97
|
+
|
98
|
+
def create_table(table_name, **options)
|
99
|
+
options[:_uses_legacy_table_name] = true
|
100
|
+
options[:_skip_validate_options] = true
|
101
|
+
|
102
|
+
super
|
103
|
+
end
|
104
|
+
|
105
|
+
def rename_table(table_name, new_name, **options)
|
106
|
+
options[:_uses_legacy_table_name] = true
|
107
|
+
super
|
108
|
+
end
|
109
|
+
|
110
|
+
def change_column(table_name, column_name, type, **options)
|
111
|
+
options[:_skip_validate_options] = true
|
112
|
+
if connection.adapter_name == "Mysql2" || connection.adapter_name == "Trilogy"
|
113
|
+
options[:collation] ||= :no_collation
|
114
|
+
end
|
115
|
+
super
|
116
|
+
end
|
117
|
+
|
118
|
+
def change_column_null(table_name, column_name, null, default = nil)
|
119
|
+
super(table_name, column_name, !!null, default)
|
120
|
+
end
|
121
|
+
|
122
|
+
def disable_extension(name, **options)
|
123
|
+
if connection.adapter_name == "PostgreSQL"
|
124
|
+
options[:force] = :cascade
|
125
|
+
end
|
126
|
+
super
|
127
|
+
end
|
128
|
+
|
129
|
+
def add_foreign_key(from_table, to_table, **options)
|
130
|
+
if connection.adapter_name == "PostgreSQL" && options[:deferrable] == true
|
131
|
+
options[:deferrable] = :immediate
|
132
|
+
end
|
133
|
+
super
|
134
|
+
end
|
135
|
+
|
136
|
+
private
|
137
|
+
def compatible_table_definition(t)
|
138
|
+
class << t
|
139
|
+
prepend TableDefinition
|
140
|
+
end
|
141
|
+
super
|
142
|
+
end
|
143
|
+
end
|
34
144
|
|
35
145
|
class V6_1 < V7_0
|
36
146
|
class PostgreSQLCompat
|
@@ -80,6 +190,10 @@ module ActiveRecord
|
|
80
190
|
options[:precision] ||= nil
|
81
191
|
super
|
82
192
|
end
|
193
|
+
|
194
|
+
private
|
195
|
+
def raise_on_if_exist_options(options)
|
196
|
+
end
|
83
197
|
end
|
84
198
|
|
85
199
|
private
|
@@ -109,6 +223,10 @@ module ActiveRecord
|
|
109
223
|
options[:precision] ||= nil
|
110
224
|
super
|
111
225
|
end
|
226
|
+
|
227
|
+
private
|
228
|
+
def raise_on_if_exist_options(options)
|
229
|
+
end
|
112
230
|
end
|
113
231
|
|
114
232
|
def add_reference(table_name, ref_name, **options)
|
@@ -199,7 +317,7 @@ module ActiveRecord
|
|
199
317
|
end
|
200
318
|
|
201
319
|
def create_table(table_name, **options)
|
202
|
-
if connection.adapter_name == "Mysql2"
|
320
|
+
if connection.adapter_name == "Mysql2" || connection.adapter_name == "Trilogy"
|
203
321
|
super(table_name, options: "ENGINE=InnoDB", **options)
|
204
322
|
else
|
205
323
|
super
|
@@ -218,6 +336,10 @@ module ActiveRecord
|
|
218
336
|
super(*args, type: :integer, **options)
|
219
337
|
end
|
220
338
|
alias :belongs_to :references
|
339
|
+
|
340
|
+
private
|
341
|
+
def raise_on_if_exist_options(options)
|
342
|
+
end
|
221
343
|
end
|
222
344
|
|
223
345
|
def create_table(table_name, **options)
|
@@ -227,7 +349,7 @@ module ActiveRecord
|
|
227
349
|
end
|
228
350
|
end
|
229
351
|
|
230
|
-
unless connection.adapter_name
|
352
|
+
unless ["Mysql2", "Trilogy"].include?(connection.adapter_name) && options[:id] == :bigint
|
231
353
|
if [:integer, :bigint].include?(options[:id]) && !options.key?(:default)
|
232
354
|
options[:default] = nil
|
233
355
|
end
|
@@ -284,6 +406,10 @@ module ActiveRecord
|
|
284
406
|
options[:null] = true if options[:null].nil?
|
285
407
|
super
|
286
408
|
end
|
409
|
+
|
410
|
+
private
|
411
|
+
def raise_on_if_exist_options(options)
|
412
|
+
end
|
287
413
|
end
|
288
414
|
|
289
415
|
def add_reference(table_name, ref_name, **options)
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
class Migration
|
5
|
+
# The default strategy for executing migrations. Delegates method calls
|
6
|
+
# to the connection adapter.
|
7
|
+
class DefaultStrategy < ExecutionStrategy # :nodoc:
|
8
|
+
private
|
9
|
+
def method_missing(method, *arguments, &block)
|
10
|
+
connection.send(method, *arguments, &block)
|
11
|
+
end
|
12
|
+
ruby2_keywords(:method_missing)
|
13
|
+
|
14
|
+
def respond_to_missing?(method, *)
|
15
|
+
connection.respond_to?(method) || super
|
16
|
+
end
|
17
|
+
|
18
|
+
def connection
|
19
|
+
migration.connection
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
class Migration
|
5
|
+
# ExecutionStrategy is used by the migration to respond to any method calls
|
6
|
+
# that the migration class does not implement directly. This is the base strategy.
|
7
|
+
# All strategies should inherit from this class.
|
8
|
+
#
|
9
|
+
# The ExecutionStrategy receives the current +migration+ when initialized.
|
10
|
+
class ExecutionStrategy # :nodoc:
|
11
|
+
def initialize(migration)
|
12
|
+
@migration = migration
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
attr_reader :migration
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|