From 56515255a25571d78b1642743af2520a102a0b70 Mon Sep 17 00:00:00 2001 From: Ali Hadi Mazeh Date: Tue, 13 Aug 2024 14:53:44 -0400 Subject: [PATCH] schema change --- db/schema.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index 4f439f27d1..dd09a891c4 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -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_07_05_183747) do +ActiveRecord::Schema[7.1].define(version: 2023_12_18_154727) do # These are extensions that must be enabled in order to support this database enable_extension "pgcrypto" enable_extension "plpgsql" @@ -193,12 +193,12 @@ t.uuid "role_id" t.string "language", null: false t.string "reset_digest" - t.datetime "reset_sent_at" + t.datetime "reset_sent_at", precision: nil t.boolean "verified", default: false t.string "verification_digest" - t.datetime "verification_sent_at" + t.datetime "verification_sent_at", precision: nil t.string "session_token" - t.datetime "session_expiry" + t.datetime "session_expiry", precision: nil t.integer "status", default: 0 t.index ["email", "provider"], name: "index_users_on_email_and_provider", unique: true t.index ["reset_digest"], name: "index_users_on_reset_digest", unique: true