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