hensei-api/db/migrate/20230131084343_add_local_id_to_parties.rb
Justin Edmund cce33ebf08 Add local_id to Party object
We can't save in the user_id column because it is an association, but that's okay
2023-01-31 00:54:17 -08:00

5 lines
148 B
Ruby

class AddLocalIdToParties < ActiveRecord::Migration[7.0]
def change
add_column :parties, :local_id, :uuid, null: true, unique: true
end
end