mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #44029 from soartec-lab/fix/doc-active_record-partial_inserts
Fix remove default value for `config.active_record.partial_inserts` [skip ci]
This commit is contained in:
commit
ad60a8bb33
1 changed files with 2 additions and 1 deletions
|
@ -637,7 +637,7 @@ Is a boolean value which controls whether or not timestamping of `create` and `u
|
||||||
|
|
||||||
#### `config.active_record.partial_inserts`
|
#### `config.active_record.partial_inserts`
|
||||||
|
|
||||||
Is a boolean value and controls whether or not partial writes are used when creating new records (i.e. whether inserts only set attributes that are different from the default). The default value is `true`.
|
Is a boolean value and controls whether or not partial writes are used when creating new records (i.e. whether inserts only set attributes that are different from the default).
|
||||||
|
|
||||||
#### `config.active_record.partial_updates`
|
#### `config.active_record.partial_updates`
|
||||||
|
|
||||||
|
@ -1864,6 +1864,7 @@ Accepts a string for the HTML tag used to wrap attachments. Defaults to `"action
|
||||||
- `config.active_record.cache_versioning`: `false`
|
- `config.active_record.cache_versioning`: `false`
|
||||||
- `config.active_record.has_many_inversing`: `false`
|
- `config.active_record.has_many_inversing`: `false`
|
||||||
- `config.active_record.legacy_connection_handling`: `true`
|
- `config.active_record.legacy_connection_handling`: `true`
|
||||||
|
- `config.active_record.partial_inserts`: `true`
|
||||||
- `config.active_support.use_authenticated_message_encryption`: `false`
|
- `config.active_support.use_authenticated_message_encryption`: `false`
|
||||||
- `config.active_support.hash_digest_class`: `OpenSSL::Digest::MD5`
|
- `config.active_support.hash_digest_class`: `OpenSSL::Digest::MD5`
|
||||||
- `config.active_support.key_generator_hash_digest_class`: `OpenSSL::Digest::SHA1`
|
- `config.active_support.key_generator_hash_digest_class`: `OpenSSL::Digest::SHA1`
|
||||||
|
|
Loading…
Reference in a new issue