adding devise

This commit is contained in:
2022-12-20 17:29:05 +02:00
parent d2890636fd
commit 5ac5d2e538
24 changed files with 718 additions and 3 deletions

12
db/schema.rb generated
View File

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2022_12_20_150444) do
ActiveRecord::Schema[7.0].define(version: 2022_12_20_150958) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -19,6 +19,16 @@ ActiveRecord::Schema[7.0].define(version: 2022_12_20_150444) do
t.boolean "public"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.string "confirmation_token"
t.datetime "confirmed_at"
t.datetime "confirmation_sent_at"
t.index ["email"], name: "index_members_on_email", unique: true
t.index ["reset_password_token"], name: "index_members_on_reset_password_token", unique: true
end
end