aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/decimal_without_scale.rb
blob: 7ce33e9cd303aafd6eaa5ee0716103bcf0af78fd (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActiveRecord
  module Type
    class DecimalWithoutScale < ActiveModel::Type::BigInteger # :nodoc:
      def type
        :decimal
      end
    end
  end
end