aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/float.rb
blob: 089169e7c9b6b41cea6a225f267a1eabb575ecd4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                   
module ActiveRecord
  module ConnectionAdapters
    module Type
      class Float < Value # :nodoc:
        def type
          :float
        end
      end
    end
  end
end