point.rb 377 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Point < Type::String
          def type_cast(value)
            if ::String === value
              ConnectionAdapters::PostgreSQLColumn.string_to_point value
            else
              value
            end
          end
        end
      end
    end
  end
end