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