aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/type/text.rb
blob: 26f980f060065ad336f07885169a32fb5dd01960 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                   
require 'active_record/type/string'

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