mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 06:34:46 +02:00
5 lines
142 B
Ruby
5 lines
142 B
Ruby
class AddUuidToContacts < ActiveRecord::Migration
|
|
def change
|
|
add_column :contacts, :uuid, :uuid, default: 'gen_random_uuid()'
|
|
end
|
|
end
|