mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-02 02:11:33 +00:00
7 lines
170 B
Ruby
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
|