FEATURE: optionally get extra profile info from facebook

This feature requires the application be approved by facebook, so it is
default off
This commit is contained in:
Sam
2016-09-19 16:14:11 +10:00
parent 5b3cd3fac9
commit 8dc4329094
6 changed files with 54 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
class AddFieldsToFacebookUserInfo < ActiveRecord::Migration
def change
add_column :facebook_user_infos, :about_me, :text
add_column :facebook_user_infos, :location, :string
add_column :facebook_user_infos, :website, :text
end
end