aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/text.rb
blob: cb1949700a20477f4d08852ef3f10ad733d2c8ad (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActiveRecord
  module Type
    class Text < ActiveModel::Type::String # :nodoc:
      def type
        :text
      end
    end
  end
end