1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixed broken transactions that were actually only running object-level and not db level transactions [andreas]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@286 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2004-12-30 14:52:42 +00:00
parent 50562c2a7e
commit 13273f7a55

View file

@ -1,5 +1,7 @@
*SVN*
* Fixed broken transactions that were actually only running object-level and not db level transactions [andreas]
* Added Base.default_timezone accessor that determines whether to use Time.local (using :local) or Time.utc (using :utc) when pulling dates
and times from the database. This is set to :local by default.