Add quotes_count to statuses stats (#35832)

This commit is contained in:
Claire 2025-08-25 14:21:28 +02:00 committed by GitHub
parent 94ad088482
commit 2560242972
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 94 additions and 9 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[8.0].define(version: 2025_08_19_100545) do
ActiveRecord::Schema[8.0].define(version: 2025_08_20_084312) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_catalog.plpgsql"
@ -1103,6 +1103,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_08_19_100545) do
t.datetime "updated_at", precision: nil, null: false
t.bigint "untrusted_favourites_count"
t.bigint "untrusted_reblogs_count"
t.bigint "quotes_count", default: 0, null: false
t.index ["status_id"], name: "index_status_stats_on_status_id", unique: true
end