Activate device email change confirmation
This commit is contained in:
parent
d68d2be798
commit
0f9fdf3f75
5 changed files with 10 additions and 1 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddUnconfirmedEmailColumnToUsers < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :users, :unconfirmed_email, :text
|
||||
end
|
||||
end
|
|
@ -605,6 +605,7 @@ ActiveRecord::Schema.define(version: 2019_07_04_144304) do
|
|||
t.string "confirmation_token"
|
||||
t.datetime "confirmed_at"
|
||||
t.datetime "confirmation_sent_at"
|
||||
t.text "unconfirmed_email"
|
||||
t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true
|
||||
t.index ["email"], name: "index_users_on_email", unique: true
|
||||
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue