Renames confirmed_oauth_email to oauth_email

Refactors the way oauth_email is used to cover more cases (fixes pending specs)
This commit is contained in:
kikito
2016-01-26 12:44:55 +01:00
parent 92786764b7
commit a606c7aa8d
5 changed files with 31 additions and 27 deletions

View File

@@ -0,0 +1,5 @@
class RenameConfirmedOauthEmailToOauthEmail < ActiveRecord::Migration
def change
rename_column :users, :confirmed_oauth_email, :oauth_email
end
end