Changeset 9076
- Timestamp:
- 03/22/08 02:23:09 (6 months ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/environments/environment.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r9074 r9076 1 1 *SVN* 2 3 * Added config.time_zone = 'UTC' as a commented-out option in the default environment.rb [Geoff Buesing] 2 4 3 5 * Adding rake tasks time:zones:all, time:zones:us and time:zones:local for finding time zone names for config.time_zone option [Geoff Buesing] trunk/railties/environments/environment.rb
r8887 r9076 55 55 # config.active_record.observers = :cacher, :garbage_collector 56 56 57 # Make Active Record use UTC-base instead of local time 58 # config.active_record.default_timezone = :utc 57 # Make Time.zone default to the specified zone, and make ActiveRecord store time values 58 # in the database in UTC, and return them converted to the specified local zone. 59 # Run `rake -D time` for a list tasks for finding time zone names. 60 # config.time_zone = 'UTC' 59 61 end