resolve structure conflict

This commit is contained in:
olegphenomenon 2021-10-28 09:49:15 +03:00
parent f6e46b8fe6
commit d56c61bf84
7 changed files with 106 additions and 10 deletions

View file

@ -0,0 +1,5 @@
class AddColumnToUser < ActiveRecord::Migration[6.1]
def change
add_column :users, :uuid, :uuid, default: 'gen_random_uuid()'
end
end