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