mirror of https://github.com/mastodon/mastodon
Add `quotes_count` to statuses stats (#35832)
parent
94ad088482
commit
2560242972
@ -0,0 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AddQuotesCountToStatusStat < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :status_stats, :quotes_count, :bigint, null: false, default: 0
|
||||
end
|
||||
end
|
||||
Loading…
Reference in New Issue