1 2 3 4 5 6 7 8 9
module Arel module Attributes class Decimal < Attribute def type_cast(val) type_cast_to_numeric(val, :to_d) end end end end