From 34cb5bc70c77d45db30497d38971ebfc8ab2faa9 Mon Sep 17 00:00:00 2001 From: moozzi Date: Tue, 24 Feb 2026 07:42:48 +0100 Subject: [PATCH] Added missing schema changes from PR #75 --- db/schema.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db/schema.rb b/db/schema.rb index df9229e..e3467e7 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[8.0].define(version: 2026_02_12_183000) do +ActiveRecord::Schema[8.0].define(version: 2026_02_18_120000) do # These are extensions that must be enabled in order to support this database enable_extension "pg_catalog.plpgsql" enable_extension "pg_stat_statements" @@ -769,6 +769,7 @@ t.bigint "person_id", null: false t.enum "mention_restriction", default: "anyone", null: false, enum_type: "user_mention_restriction" t.boolean "open_threads_at_first_unread", default: false, null: false + t.datetime "last_login_at" t.index ["deleted_at"], name: "index_users_on_deleted_at" t.index ["person_id"], name: "index_users_on_person_id" t.index ["username"], name: "index_users_on_username", unique: true