aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/date_time.rb
blob: dadd76dbe0c499132c8189c30a12aaecc602087a (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
module ActiveRecord
  module Type
    class DateTime < ActiveModel::Type::DateTime
      include Internal::Timezone
    end
  end
end