From 5b676e8f93e1c9a7de0d7aa1309c3efcd4b8f5f3 Mon Sep 17 00:00:00 2001 From: Matt-Yorkley <9029026+Matt-Yorkley@users.noreply.github.com> Date: Thu, 3 Jun 2021 11:33:33 +0100 Subject: [PATCH] Remove papertrail initializer This setting is now deprecated and triggers this message: Association Tracking for PaperTrail has been extracted to a separate gem. To use it, please add `paper_trail-association_tracking` to your Gemfile. If you don't use it (most people don't, that's the default) and you set `track_associations = false` somewhere (probably a rails initializer) you can remove that line now. --- config/initializers/paper_trail.rb | 1 - 1 file changed, 1 deletion(-) delete mode 100644 config/initializers/paper_trail.rb diff --git a/config/initializers/paper_trail.rb b/config/initializers/paper_trail.rb deleted file mode 100644 index 39a6679176..0000000000 --- a/config/initializers/paper_trail.rb +++ /dev/null @@ -1 +0,0 @@ -PaperTrail.config.track_associations = false