aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/oid/time.rb
blob: ea1f599b0f813046e5391d3f051055415bc9da2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Time < Type::Time
          include Infinity
        end
      end
    end
  end
end