Use Rails 7.1 marshalling format

Enabling this option is only dangerous when deploying applications using
multiple servers. Since this isn't our case, we can enable it.
This commit is contained in:
Javi Martín
2024-04-15 16:33:58 +02:00
parent 7993f6d1ed
commit 0d0f3a48ff

View File

@@ -197,7 +197,7 @@ Rails.application.config.active_record.before_committed_on_all_records = true
# leave this optimization off on the first deploy, then enable it on a # leave this optimization off on the first deploy, then enable it on a
# subsequent deploy. # subsequent deploy.
#++ #++
# Rails.application.config.active_record.marshalling_format_version = 7.1 Rails.application.config.active_record.marshalling_format_version = 7.1
### ###
# Run `after_commit` and `after_*_commit` callbacks in the order they are defined in a model. # Run `after_commit` and `after_*_commit` callbacks in the order they are defined in a model.