Add emoji_reactions_count_per_account

This commit is contained in:
KMY 2023-04-14 10:20:15 +09:00
parent 1efc51313d
commit fed859a7d6
5 changed files with 28 additions and 13 deletions

View file

@ -0,0 +1,5 @@
class AddEmojiReactionsCountPerAccountToStatusStats < ActiveRecord::Migration[6.1]
def change
add_column :status_stats, :emoji_reactions_count_per_account, :integer, null: false, default: 0
end
end