aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/type/decimal_without_scale.rb
blob: 129baa0c1087f5af5874f3d05bee3d66735b0820 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
require 'active_model/type/big_integer'

module ActiveModel
  module Type
    class DecimalWithoutScale < BigInteger # :nodoc:
      def type
        :decimal
      end
    end
  end
end