5 lines
136 B
Ruby
5 lines
136 B
Ruby
|
|
class AddMicrosoftUserIdToUsers < ActiveRecord::Migration[6.0]
|
||
|
|
def change
|
||
|
|
add_column :users, :microsoft_user_id, :string
|
||
|
|
end
|
||
|
|
end
|