activerecord 7.0.8 → 7.1.3.4
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 +1554 -1452
- data/MIT-LICENSE +1 -1
- data/README.rdoc +16 -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 +20 -4
- 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 +15 -9
- data/lib/active_record/associations/collection_proxy.rb +15 -10
- 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 +31 -7
- data/lib/active_record/associations/preloader.rb +13 -10
- 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 +313 -217
- 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 +52 -34
- 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 +74 -51
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +5 -0
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +129 -31
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +62 -23
- 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 -124
- data/lib/active_record/connection_adapters/abstract/transaction.rb +287 -58
- data/lib/active_record/connection_adapters/abstract_adapter.rb +511 -91
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +207 -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 +18 -13
- data/lib/active_record/connection_adapters/mysql2/database_statements.rb +151 -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 +14 -3
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +74 -40
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +3 -2
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +11 -2
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp_with_time_zone.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +10 -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 +53 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +361 -60
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +353 -192
- 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 +52 -39
- 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 +209 -79
- data/lib/active_record/connection_adapters/statement_pool.rb +7 -0
- data/lib/active_record/connection_adapters/trilogy/database_statements.rb +99 -0
- data/lib/active_record/connection_adapters/trilogy_adapter.rb +262 -0
- data/lib/active_record/connection_adapters.rb +3 -1
- data/lib/active_record/connection_handling.rb +72 -95
- data/lib/active_record/core.rb +175 -153
- 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 +9 -4
- 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 +42 -18
- data/lib/active_record/encryption/encrypted_attribute_type.rb +21 -6
- data/lib/active_record/encryption/extended_deterministic_queries.rb +66 -69
- data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +3 -3
- 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 +112 -28
- data/lib/active_record/errors.rb +112 -18
- 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 +135 -71
- data/lib/active_record/future_result.rb +31 -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 +57 -10
- data/lib/active_record/integration.rb +8 -8
- data/lib/active_record/internal_metadata.rb +120 -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 +6 -8
- data/lib/active_record/middleware/shard_selector.rb +3 -1
- data/lib/active_record/migration/command_recorder.rb +104 -5
- data/lib/active_record/migration/compatibility.rb +139 -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/pending_migration_connection.rb +21 -0
- data/lib/active_record/migration.rb +219 -111
- data/lib/active_record/model_schema.rb +64 -44
- data/lib/active_record/nested_attributes.rb +24 -6
- data/lib/active_record/normalization.rb +167 -0
- data/lib/active_record/persistence.rb +188 -37
- 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 +109 -47
- data/lib/active_record/railties/controller_runtime.rb +12 -6
- data/lib/active_record/railties/databases.rake +142 -148
- 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 +174 -44
- 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 +187 -63
- data/lib/active_record/relation/delegation.rb +23 -9
- data/lib/active_record/relation/finder_methods.rb +77 -16
- 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/polymorphic_array_value.rb +4 -6
- 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 +352 -63
- data/lib/active_record/relation/spawn_methods.rb +18 -1
- data/lib/active_record/relation.rb +91 -35
- data/lib/active_record/result.rb +19 -5
- data/lib/active_record/runtime_registry.rb +24 -1
- data/lib/active_record/sanitization.rb +51 -11
- data/lib/active_record/schema.rb +2 -3
- data/lib/active_record/schema_dumper.rb +46 -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 +15 -7
- data/lib/active_record/test_fixtures.rb +113 -96
- data/lib/active_record/timestamp.rb +27 -15
- 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 +1 -9
- 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 +48 -12
- data/lib/active_record/connection_adapters/legacy_pool_manager.rb +0 -35
- data/lib/active_record/null_relation.rb +0 -63
@@ -4,8 +4,10 @@ require "active_record/middleware/database_selector/resolver"
|
|
4
4
|
|
5
5
|
module ActiveRecord
|
6
6
|
module Middleware
|
7
|
+
# = Database Selector \Middleware
|
8
|
+
#
|
7
9
|
# The DatabaseSelector Middleware provides a framework for automatically
|
8
|
-
# swapping from the primary to the replica database connection. Rails
|
10
|
+
# swapping from the primary to the replica database connection. \Rails
|
9
11
|
# provides a basic framework to determine when to swap and allows for
|
10
12
|
# applications to write custom strategy classes to override the default
|
11
13
|
# behavior.
|
@@ -15,14 +17,14 @@ module ActiveRecord
|
|
15
17
|
# resolver context class that sets a value that helps the resolver class
|
16
18
|
# decide when to switch.
|
17
19
|
#
|
18
|
-
# Rails default middleware uses the request's session to set a timestamp
|
20
|
+
# \Rails default middleware uses the request's session to set a timestamp
|
19
21
|
# that informs the application when to read from a primary or read from a
|
20
22
|
# replica.
|
21
23
|
#
|
22
24
|
# To use the DatabaseSelector in your application with default settings,
|
23
25
|
# run the provided generator.
|
24
26
|
#
|
25
|
-
# bin/rails g active_record:multi_db
|
27
|
+
# $ bin/rails g active_record:multi_db
|
26
28
|
#
|
27
29
|
# This will create a file named +config/initializers/multi_db.rb+ with the
|
28
30
|
# following contents:
|
@@ -71,7 +73,7 @@ module ActiveRecord
|
|
71
73
|
context = context_klass.call(request)
|
72
74
|
resolver = resolver_klass.call(context, options)
|
73
75
|
|
74
|
-
response = if reading_request?(request)
|
76
|
+
response = if resolver.reading_request?(request)
|
75
77
|
resolver.read(&blk)
|
76
78
|
else
|
77
79
|
resolver.write(&blk)
|
@@ -80,10 +82,6 @@ module ActiveRecord
|
|
80
82
|
resolver.update_context(response)
|
81
83
|
response
|
82
84
|
end
|
83
|
-
|
84
|
-
def reading_request?(request)
|
85
|
-
request.get? || request.head?
|
86
|
-
end
|
87
85
|
end
|
88
86
|
end
|
89
87
|
end
|
@@ -2,8 +2,10 @@
|
|
2
2
|
|
3
3
|
module ActiveRecord
|
4
4
|
module Middleware
|
5
|
+
# = Shard Selector \Middleware
|
6
|
+
#
|
5
7
|
# The ShardSelector Middleware provides a framework for automatically
|
6
|
-
# swapping shards. Rails provides a basic framework to determine which
|
8
|
+
# swapping shards. \Rails provides a basic framework to determine which
|
7
9
|
# shard to switch to and allows for applications to write custom strategies
|
8
10
|
# for swapping if needed.
|
9
11
|
#
|
@@ -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_constraint
|
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_constraint
|
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_constraint, :remove_unique_constraint,
|
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_constraint: :remove_unique_constraint,
|
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
|
@@ -172,7 +206,10 @@ module ActiveRecord
|
|
172
206
|
end
|
173
207
|
|
174
208
|
def invert_rename_table(args)
|
175
|
-
|
209
|
+
old_name, new_name, options = args
|
210
|
+
args = [new_name, old_name]
|
211
|
+
args << options if options
|
212
|
+
[:rename_table, args]
|
176
213
|
end
|
177
214
|
|
178
215
|
def invert_remove_column(args)
|
@@ -234,6 +271,11 @@ module ActiveRecord
|
|
234
271
|
[:change_column_null, args]
|
235
272
|
end
|
236
273
|
|
274
|
+
def invert_add_foreign_key(args)
|
275
|
+
args.last.delete(:validate) if args.last.is_a?(Hash)
|
276
|
+
super
|
277
|
+
end
|
278
|
+
|
237
279
|
def invert_remove_foreign_key(args)
|
238
280
|
options = args.extract_options!
|
239
281
|
from_table, to_table = args
|
@@ -268,11 +310,68 @@ module ActiveRecord
|
|
268
310
|
[:change_table_comment, [table, from: options[:to], to: options[:from]]]
|
269
311
|
end
|
270
312
|
|
313
|
+
def invert_add_check_constraint(args)
|
314
|
+
if (options = args.last).is_a?(Hash)
|
315
|
+
options.delete(:validate)
|
316
|
+
options[:if_exists] = options.delete(:if_not_exists) if options.key?(:if_not_exists)
|
317
|
+
end
|
318
|
+
super
|
319
|
+
end
|
320
|
+
|
271
321
|
def invert_remove_check_constraint(args)
|
272
322
|
raise ActiveRecord::IrreversibleMigration, "remove_check_constraint is only reversible if given an expression." if args.size < 2
|
323
|
+
|
324
|
+
if (options = args.last).is_a?(Hash)
|
325
|
+
options[:if_not_exists] = options.delete(:if_exists) if options.key?(:if_exists)
|
326
|
+
end
|
327
|
+
super
|
328
|
+
end
|
329
|
+
|
330
|
+
def invert_remove_exclusion_constraint(args)
|
331
|
+
raise ActiveRecord::IrreversibleMigration, "remove_exclusion_constraint is only reversible if given an expression." if args.size < 2
|
332
|
+
super
|
333
|
+
end
|
334
|
+
|
335
|
+
def invert_add_unique_constraint(args)
|
336
|
+
options = args.dup.extract_options!
|
337
|
+
|
338
|
+
raise ActiveRecord::IrreversibleMigration, "add_unique_constraint is not reversible if given an using_index." if options[:using_index]
|
273
339
|
super
|
274
340
|
end
|
275
341
|
|
342
|
+
def invert_remove_unique_constraint(args)
|
343
|
+
_table, columns = args.dup.tap(&:extract_options!)
|
344
|
+
|
345
|
+
raise ActiveRecord::IrreversibleMigration, "remove_unique_constraint is only reversible if given an column_name." if columns.blank?
|
346
|
+
super
|
347
|
+
end
|
348
|
+
|
349
|
+
def invert_drop_enum(args)
|
350
|
+
_enum, values = args.dup.tap(&:extract_options!)
|
351
|
+
raise ActiveRecord::IrreversibleMigration, "drop_enum is only reversible if given a list of enum values." unless values
|
352
|
+
super
|
353
|
+
end
|
354
|
+
|
355
|
+
def invert_rename_enum(args)
|
356
|
+
name, options = args
|
357
|
+
|
358
|
+
unless options.is_a?(Hash) && options.has_key?(:to)
|
359
|
+
raise ActiveRecord::IrreversibleMigration, "rename_enum is only reversible if given a :to option."
|
360
|
+
end
|
361
|
+
|
362
|
+
[:rename_enum, [options[:to], to: name]]
|
363
|
+
end
|
364
|
+
|
365
|
+
def invert_rename_enum_value(args)
|
366
|
+
type_name, options = args
|
367
|
+
|
368
|
+
unless options.is_a?(Hash) && options.has_key?(:from) && options.has_key?(:to)
|
369
|
+
raise ActiveRecord::IrreversibleMigration, "rename_enum_value is only reversible if given a :from and :to option."
|
370
|
+
end
|
371
|
+
|
372
|
+
[:rename_enum_value, [type_name, from: options[:to], to: options[:from]]]
|
373
|
+
end
|
374
|
+
|
276
375
|
def respond_to_missing?(method, _)
|
277
376
|
super || delegate.respond_to?(method)
|
278
377
|
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,125 @@ 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
|
+
|
65
|
+
module TableDefinition
|
66
|
+
include LegacyIndexName
|
67
|
+
|
68
|
+
def column(name, type, **options)
|
69
|
+
options[:_skip_validate_options] = true
|
70
|
+
super
|
71
|
+
end
|
72
|
+
|
73
|
+
def change(name, type, **options)
|
74
|
+
options[:_skip_validate_options] = true
|
75
|
+
super
|
76
|
+
end
|
77
|
+
|
78
|
+
def index(column_name, **options)
|
79
|
+
options[:name] = legacy_index_name(name, column_name) if options[:name].nil?
|
80
|
+
super
|
81
|
+
end
|
82
|
+
|
83
|
+
private
|
84
|
+
def raise_on_if_exist_options(options)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
include LegacyIndexName
|
89
|
+
|
90
|
+
def add_column(table_name, column_name, type, **options)
|
91
|
+
options[:_skip_validate_options] = true
|
92
|
+
super
|
93
|
+
end
|
94
|
+
|
95
|
+
def add_index(table_name, column_name, **options)
|
96
|
+
options[:name] = legacy_index_name(table_name, column_name) if options[:name].nil?
|
97
|
+
super
|
98
|
+
end
|
99
|
+
|
100
|
+
def add_reference(table_name, ref_name, **options)
|
101
|
+
options[:_skip_validate_options] = true
|
102
|
+
super
|
103
|
+
end
|
104
|
+
alias :add_belongs_to :add_reference
|
105
|
+
|
106
|
+
def create_table(table_name, **options)
|
107
|
+
options[:_uses_legacy_table_name] = true
|
108
|
+
options[:_skip_validate_options] = true
|
109
|
+
|
110
|
+
super
|
111
|
+
end
|
112
|
+
|
113
|
+
def rename_table(table_name, new_name, **options)
|
114
|
+
options[:_uses_legacy_table_name] = true
|
115
|
+
super
|
116
|
+
end
|
117
|
+
|
118
|
+
def change_column(table_name, column_name, type, **options)
|
119
|
+
options[:_skip_validate_options] = true
|
120
|
+
if connection.adapter_name == "Mysql2" || connection.adapter_name == "Trilogy"
|
121
|
+
options[:collation] ||= :no_collation
|
122
|
+
end
|
123
|
+
super
|
124
|
+
end
|
125
|
+
|
126
|
+
def change_column_null(table_name, column_name, null, default = nil)
|
127
|
+
super(table_name, column_name, !!null, default)
|
128
|
+
end
|
129
|
+
|
130
|
+
def disable_extension(name, **options)
|
131
|
+
if connection.adapter_name == "PostgreSQL"
|
132
|
+
options[:force] = :cascade
|
133
|
+
end
|
134
|
+
super
|
135
|
+
end
|
136
|
+
|
137
|
+
def add_foreign_key(from_table, to_table, **options)
|
138
|
+
if connection.adapter_name == "PostgreSQL" && options[:deferrable] == true
|
139
|
+
options[:deferrable] = :immediate
|
140
|
+
end
|
141
|
+
super
|
142
|
+
end
|
143
|
+
|
144
|
+
private
|
145
|
+
def compatible_table_definition(t)
|
146
|
+
class << t
|
147
|
+
prepend TableDefinition
|
148
|
+
end
|
149
|
+
super
|
150
|
+
end
|
151
|
+
end
|
34
152
|
|
35
153
|
class V6_1 < V7_0
|
36
154
|
class PostgreSQLCompat
|
@@ -80,6 +198,10 @@ module ActiveRecord
|
|
80
198
|
options[:precision] ||= nil
|
81
199
|
super
|
82
200
|
end
|
201
|
+
|
202
|
+
private
|
203
|
+
def raise_on_if_exist_options(options)
|
204
|
+
end
|
83
205
|
end
|
84
206
|
|
85
207
|
private
|
@@ -109,6 +231,10 @@ module ActiveRecord
|
|
109
231
|
options[:precision] ||= nil
|
110
232
|
super
|
111
233
|
end
|
234
|
+
|
235
|
+
private
|
236
|
+
def raise_on_if_exist_options(options)
|
237
|
+
end
|
112
238
|
end
|
113
239
|
|
114
240
|
def add_reference(table_name, ref_name, **options)
|
@@ -199,7 +325,7 @@ module ActiveRecord
|
|
199
325
|
end
|
200
326
|
|
201
327
|
def create_table(table_name, **options)
|
202
|
-
if connection.adapter_name == "Mysql2"
|
328
|
+
if connection.adapter_name == "Mysql2" || connection.adapter_name == "Trilogy"
|
203
329
|
super(table_name, options: "ENGINE=InnoDB", **options)
|
204
330
|
else
|
205
331
|
super
|
@@ -218,6 +344,10 @@ module ActiveRecord
|
|
218
344
|
super(*args, type: :integer, **options)
|
219
345
|
end
|
220
346
|
alias :belongs_to :references
|
347
|
+
|
348
|
+
private
|
349
|
+
def raise_on_if_exist_options(options)
|
350
|
+
end
|
221
351
|
end
|
222
352
|
|
223
353
|
def create_table(table_name, **options)
|
@@ -227,7 +357,7 @@ module ActiveRecord
|
|
227
357
|
end
|
228
358
|
end
|
229
359
|
|
230
|
-
unless connection.adapter_name
|
360
|
+
unless ["Mysql2", "Trilogy"].include?(connection.adapter_name) && options[:id] == :bigint
|
231
361
|
if [:integer, :bigint].include?(options[:id]) && !options.key?(:default)
|
232
362
|
options[:default] = nil
|
233
363
|
end
|
@@ -284,6 +414,10 @@ module ActiveRecord
|
|
284
414
|
options[:null] = true if options[:null].nil?
|
285
415
|
super
|
286
416
|
end
|
417
|
+
|
418
|
+
private
|
419
|
+
def raise_on_if_exist_options(options)
|
420
|
+
end
|
287
421
|
end
|
288
422
|
|
289
423
|
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
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
class PendingMigrationConnection # :nodoc:
|
5
|
+
def self.establish_temporary_connection(db_config, &block)
|
6
|
+
pool = ActiveRecord::Base.connection_handler.establish_connection(db_config, owner_name: self)
|
7
|
+
|
8
|
+
yield pool.connection
|
9
|
+
ensure
|
10
|
+
ActiveRecord::Base.connection_handler.remove_connection_pool(self.name)
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.primary_class?
|
14
|
+
false
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.current_preventing_writes
|
18
|
+
false
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|