forked from bofh/fetsite
8 lines
190 B
Ruby
8 lines
190 B
Ruby
class AddColumnsToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :provider, :string
|
|
add_column :users, :uid, :string
|
|
add_column :users, :name, :string
|
|
end
|
|
end
|