1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/db/migrate/20181204024403_add_omniauth_to_users.rb
2018-12-04 07:44:43 +05:00

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