updated schema.rb with correct changes

This commit is contained in:
Brett Walker 2017-09-13 16:18:48 +02:00
parent a2715aaa12
commit 867d59c57f
1 changed files with 4 additions and 0 deletions

View File

@ -515,8 +515,12 @@ ActiveRecord::Schema.define(version: 20170921115009) do
t.string "email", null: false
t.datetime "created_at"
t.datetime "updated_at"
t.string "confirmation_token"
t.datetime "confirmed_at"
t.datetime "confirmation_sent_at"
end
add_index "emails", ["confirmation_token"], name: "index_emails_on_confirmation_token", unique: true, using: :btree
add_index "emails", ["email"], name: "index_emails_on_email", unique: true, using: :btree
add_index "emails", ["user_id"], name: "index_emails_on_user_id", using: :btree