aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/boolean.rb
blob: 938d227632e5116cb7dea78e163f149a3e043f52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveRecord
  module ConnectionAdapters
    module Type
      class Boolean < Value # :nodoc:
        def type
          :boolean
        end
      end
    end
  end
end