Patrick Minton

Results 2 issues of Patrick Minton

Given a migration such as: ``` class CreateSomeObject < ActiveRecord::Migration def change create_table :some_objects, :id => false do |t| t.uuid :id, :primary_key => true t.string :name end end end ```...

Ran into this today: ``` [2] pry(some_code)> response => nil ... [8] pry(some_code)> response == nil => false [9] pry(some_code)> response.nil? => true ``` Had to do this because we...

breaks backward compitability