Hi, For the normal id key (int(11)) we can use the following command: ``` class AddIdToProducts < ActiveRecord::Migration def change add_column :products, :id, :primary_key end end ``` How can we do it for uuid primary key? Best