From 7834a783b825cf91d1081b8bab3db5691d68e1b7 Mon Sep 17 00:00:00 2001 From: Roberto Miranda Date: Tue, 6 Jul 2021 19:43:44 +0100 Subject: [PATCH] destroy_all_in_batches is off by default for newly generated Rails apps. Following up https://github.com/rails/rails/pull/42673#issuecomment-874744582 --- activerecord/CHANGELOG.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index eddec18f94a..f9257186897 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -27,9 +27,6 @@ config.active_record.destroy_all_in_batches = true ``` - The option is on by default for newly generated Rails apps. Can be set in - an initializer to prevent differences across environments. - *Genadi Samokovarov*, *Roberto Miranda* * Adds support for `if_not_exists` to `add_foreign_key` and `if_exists` to `remove_foreign_key`.