Add devise

This commit is contained in:
maddiebaka
2023-10-13 18:16:00 -04:00
parent f5e9f3699f
commit c6fac7583d
24 changed files with 743 additions and 1 deletions
Generated
+13 -1
View File
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.1].define(version: 2023_10_13_015524) do
ActiveRecord::Schema[7.1].define(version: 2023_10_13_214519) do
create_table "definitions", force: :cascade do |t|
t.string "pos"
t.string "definition"
@@ -27,6 +27,18 @@ ActiveRecord::Schema[7.1].define(version: 2023_10_13_015524) do
t.datetime "updated_at", null: false
end
create_table "users", force: :cascade do |t|
t.string "username", 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.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
t.index ["username"], name: "index_users_on_username", unique: true
end
create_table "words", force: :cascade do |t|
t.string "word"
t.datetime "created_at", null: false