# File lib/big_record/connection_adapters/column.rb, line 106
      def klass
        @klass ||=
        case type
          when :integer       then Fixnum
          when :float         then Float
          when :decimal       then BigDecimal
          when :datetime      then Time
          when :date          then Date
          when :timestamp     then Time
          when :time          then Time
          when :text, :string then String
          when :binary        then String
          when :boolean       then Object
          when :map           then Hash
          when :object        then Object
          else type.to_s.constantize
        end
      end