aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/text.rb
blob: 61095ebb38539cb5711bdd0740d7335d49c0c6b1 (plain) (tree)
1
2
3
4
5
6




                                                       
                         






                
require 'active_record/connection_adapters/type/string'

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