fix another typo in the AR adapter

This commit is contained in:
Brian Lopez 2010-05-14 12:36:22 -07:00
parent 24a6393d7f
commit 86b9ffefe9
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ module ActiveRecord
case type case type
when :string then nil when :string then nil
when :text then nil when :text then nil
when :integer then "#{var_name}.to_i rescue value ? 1 : 0" when :integer then "#{var_name}.to_i rescue #{var_name} ? 1 : 0"
when :float then "#{var_name}.to_f" when :float then "#{var_name}.to_f"
when :decimal then "#{self.class.name}.value_to_decimal(#{var_name})" when :decimal then "#{self.class.name}.value_to_decimal(#{var_name})"
when :datetime, :timestamp then "#{var_name}.class == Time ? #{var_name} : #{self.class.name}.string_to_time(#{var_name})" when :datetime, :timestamp then "#{var_name}.class == Time ? #{var_name} : #{self.class.name}.string_to_time(#{var_name})"