8 lines
212 B
Ruby
8 lines
212 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddOmniauthToUsers < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :users, :omniauth_provider, :string
|
|
add_column :users, :omniauth_uid, :string
|
|
end
|
|
end
|