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