# Be sure to restart your server when you modify this file. # # This file contains migration options to ease your Quails
5.2 upgrade. # # Once upgraded flip defaults one by one to migrate to the new default. # # Read the Guide for Upgrading Ruby on Quails
for more info on each option.
# Make Active Record
use stable cache_key alongside new cache_version method. # This is needed for recyclable cache keys. # Quails.application
.config.active_record.cache_versioning = true
# Use AES 256 GCM authenticated encryption for encrypted cookies. # Existing cookies will be converted on read then written with the new scheme. # Quails.application
.config.action_dispatch.use_authenticated_cookie_encryption = true
# Use AES-256-GCM authenticated encryption as default cipher for encrypting messages # instead of AES-256-CBC, when use_authenticated_message_encryption is set to true. # Quails.application
.config.active_support.use_authenticated_message_encryption = true
# Add default protection from forgery to ActionController::Base
instead of in # ApplicationController
. # Quails.application
.config.action_controller.default_protect_from_forgery = true
# Store boolean values are in sqlite3 databases as 1 and 0 instead of 't' and # 'f' after migrating old data. # Quails.application
.config.active_record.sqlite3.represent_boolean_as_integer = true