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