aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/date_time.rb
blob: 1d7d3cfbbfbef34eec78bfde8c0b7fe83846b5f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'active_record/connection_adapters/type/timestamp'

module ActiveRecord
  module ConnectionAdapters
    module Type
      class DateTime < Timestamp # :nodoc:
        def type
          :datetime
        end
      end
    end
  end
end