aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/text.rb
blob: ee5842a3fcf25f26cf5e3750e79fff343d8d6e4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'active_record/connection_adapters/type/string'

module ActiveRecord
  module ConnectionAdapters
    module Type
      class Text < String # :nodoc:
        def type
          :text
        end
      end
    end
  end
end