Generated migration to add Omniauth columns to the User model

This commit is contained in:
Prelang Builder
2014-02-27 23:58:29 +00:00
committed by u7482
parent 1c773bc319
commit 921d763862

View File

@@ -0,0 +1,7 @@
class AddOmniauthColumnsToUsers < ActiveRecord::Migration
def change
add_column :users, :provider, :string
add_column :users, :uid, :string
add_column :users, :name, :string
end
end