From 18186794165f47df4c8be61405fd30ac07cb2a53 Mon Sep 17 00:00:00 2001 From: Shaun McDonald Date: Mon, 17 Nov 2008 19:11:54 +0000 Subject: [PATCH] Make the dates and times that the server deals with UTC. This is probably required for changeset, as they could auto close instantly when the clocks go forward by one hour. --- config/environment.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environment.rb b/config/environment.rb index d2ab58ce4..2e5da44e3 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -91,5 +91,5 @@ Rails::Initializer.run do |config| # config.active_record.observers = :cacher, :garbage_collector # Make Active Record use UTC-base instead of local time - # config.active_record.default_timezone = :utc + config.active_record.default_timezone = :utc end -- 2.39.5