default application_timezone to nil

This commit is contained in:
Brian Lopez 2010-08-05 23:09:13 -07:00
parent f4fb9e8034
commit 957b0bac1b
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ module Mysql2
:async => false,
:cast_booleans => false,
:symbolize_keys => false,
:database_timezone => :local, # timezone Mysql2 will assume datetime objects are stored in
:application_timezone => :local # timezone Mysql2 will convert to before handing the object back to the caller
:database_timezone => :local, # timezone Mysql2 will assume datetime objects are stored in
:application_timezone => nil # timezone Mysql2 will convert to before handing the object back to the caller
}
def initialize(opts = {})