aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/string.rb
blob: 0feb4299f5be98a54fc55b49d2a851f6b281c1c1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                    
module ActiveRecord
  module ConnectionAdapters
    module Type
      class String < Value # :nodoc:
        def type
          :string
        end
      end
    end
  end
end