aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/date.rb
blob: 8177074a20215050ea869e4bc98b1cf489f1d8da (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module ActiveRecord
  module Type
    class Date < ActiveModel::Type::Date
      include Internal::Timezone
    end
  end
end