7 lines
183 B
Ruby
7 lines
183 B
Ruby
class AddFacebookFieldsToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :product_customers, :provider, :string
|
|
add_column :product_customers, :uid, :string
|
|
end
|
|
end
|