Patrick Minton
Patrick Minton
For the interim, I seem to have solved this by making the migrations thus: ``` class CreateSomeObject < ActiveRecord::Migration def change create_table :some_objects, :id => false do |t| t.uuid :id,...
For the moment I solved this by NOT specifying `:primary_key => true` clause in the migration, then in the model doing: ``` include ActiveUUID::UUID self.primary_key = 'id' ``` However this...
Also, apolgies for the constant closing/reopening -- keep tabbing to the wrong button!
It's been a minute since I worked at the company that originally used this code, and which caused me to file this, but I can envision a few ways. For...