aboutsummaryrefslogblamecommitdiffstats
path: root/activemodel/lib/active_model/type/decimal_without_scale.rb
blob: 985e1038edb0421e35d120cdc680094cbd598c03 (plain) (tree)
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