Remove group following limitations

This commit is contained in:
KMY 2023-03-14 22:02:43 +09:00
parent cbe29bcdee
commit bef078a87a
13 changed files with 48 additions and 26 deletions

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
class AddGroupMessageFollowingOnlyToAccounts < ActiveRecord::Migration[6.1]
def change
add_column :accounts, :group_message_following_only, :boolean

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
class AddGroupAllowPrivateMessageToAccounts < ActiveRecord::Migration[6.1]
def change
add_column :accounts, :group_allow_private_message, :boolean

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddGroupActivityPubCountToAccountStats < ActiveRecord::Migration[6.1]
def change
add_column :account_stats, :group_activitypub_count, :integer
end
end