Remove refenrence to destroy_all_in_batches config

This feature was reverted.
This commit is contained in:
Rafael Mendonça França 2021-10-07 21:09:02 +00:00 committed by GitHub
parent f55cdafe4b
commit 720f6b1ec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -732,12 +732,6 @@ Allows specifying the Active Job queue to use for destroy jobs. When this option
When true, will always include column names in `SELECT` statements, and avoid wildcard `SELECT * FROM ...` queries. This avoids prepared statement cache errors when adding columns to a PostgreSQL database for example. Defaults to `false`.
#### `config.active_record.destroy_all_in_batches`
Ensures `ActiveRecord::Relation#destroy_all` performs the record's deletion in
batches. `ActiveRecord::Relation#destroy_all` will no longer return the collection
of the deleted records after enabling this option.
#### `config.active_record.verify_foreign_keys_for_fixtures`
Ensures all foreign key constraints are valid after fixtures are loaded in tests. Supported by PostgreSQL and SQLite only. Defaults to `false`.