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

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