aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/text.rb
blob: 61095ebb38539cb5711bdd0740d7335d49c0c6b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'active_record/connection_adapters/type/string'

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