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

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