mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-03 04:17:34 -05:00
8 lines
246 B
Ruby
8 lines
246 B
Ruby
|
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
|