Add fedibird hide followers count support

This commit is contained in:
KMY 2023-05-14 12:44:41 +09:00
parent 56245f4ef8
commit 9818f6a0e1
10 changed files with 31 additions and 6 deletions

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddSettingsToAccounts < ActiveRecord::Migration[6.1]
def change
add_column :accounts, :settings, :jsonb
end
end