FEATURE: store twitter supplied email for auditing

This commit is contained in:
Sam
2017-12-14 15:35:27 +11:00
parent a9cac72fb9
commit 67aecff59c
3 changed files with 39 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class AddEmailToTwitterUserInfo < ActiveRecord::Migration[5.1]
def change
add_column :twitter_user_infos, :email, :string, limit: 1000, null: true
end
end