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