I am using this setup in config/environments/production.rb:
config.time_zone = 'Eastern Time (US & Canada)'
config.active_record.default_timezone = 'Eastern Time (US & Canada)'
But when I am deploying the application to the server, I am seeing these warning messages:
warning: :database_timezone option must be :utc or :local - defaulting to :local
How to fix this warning? Should I add another config.active_record.default_timezone with :utc?
Rails cannot use the timezone I set above?
Thank you.