This commit is contained in:
Thomas Blazek
2013-08-25 15:22:41 +02:00
14 changed files with 92 additions and 24 deletions

View File

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