aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/decimal.rb
blob: 5b39ea9e2f9d1b4bcd3c66e6b552bcf4d0b3206b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                     
module ActiveRecord
  module ConnectionAdapters
    module Type
      class Decimal < Value # :nodoc:
        def type
          :decimal
        end
      end
    end
  end
end