Files
openfoodnetwork/db/migrate/20210713165335_add_omniauth_to_users.rb
2022-10-18 11:31:35 +11:00

7 lines
170 B
Ruby

class AddOmniauthToUsers < ActiveRecord::Migration[6.1]
def change
add_column :spree_users, :provider, :string
add_column :spree_users, :uid, :string
end
end