From 7f83e970c60caa41fd7970009f6a4f8cccd387bb Mon Sep 17 00:00:00 2001 From: KMY Date: Fri, 7 Jul 2023 08:45:49 +0900 Subject: [PATCH] Update database migration --- db/schema.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/db/schema.rb b/db/schema.rb index 80dcf72405..eec4880ed9 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1230,6 +1230,7 @@ ActiveRecord::Schema.define(version: 2023_07_06_031715) do t.index ["email"], name: "index_users_on_email", unique: true t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, opclass: :text_pattern_ops, where: "(reset_password_token IS NOT NULL)" t.index ["role_id"], name: "index_users_on_role_id", where: "(role_id IS NOT NULL)" + t.index ["unconfirmed_email"], name: "index_users_on_unconfirmed_email", where: "(unconfirmed_email IS NOT NULL)" end create_table "web_push_subscriptions", force: :cascade do |t|