aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/time.rb
blob: a3a687a8ad7ad5a63f2d4237ca86778a39beb987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveRecord
  module ConnectionAdapters
    module Type
      class Time < Value # :nodoc:
        def type
          :time
        end
      end
    end
  end
end