mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:37:06 +08:00
160d29b18a
No changes to functionality. TwitterAuthenticator goes from 136 lines to 24, and all twitter-specific logic elsewhere has been deleted 🎉
28 lines
548 B
Ruby
28 lines
548 B
Ruby
class MigrateTwitterUserInfo < ActiveRecord::Migration[5.2]
|
|
def up
|
|
execute <<~SQL
|
|
INSERT INTO user_associated_accounts (
|
|
provider_name,
|
|
provider_uid,
|
|
user_id,
|
|
info,
|
|
last_used,
|
|
created_at,
|
|
updated_at
|
|
) SELECT
|
|
'twitter',
|
|
twitter_user_id,
|
|
user_id,
|
|
json_build_object('email', email, 'nickname', screen_name),
|
|
updated_at,
|
|
created_at,
|
|
updated_at
|
|
FROM twitter_user_infos
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|