aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/text.rb
blob: 6d196966714328a7a5a3ac937e87a8707688fe04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

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