Remove group following limitations
This commit is contained in:
parent
cbe29bcdee
commit
bef078a87a
13 changed files with 48 additions and 26 deletions
|
@ -1,3 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class AddGroupMessageFollowingOnlyToAccounts < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :accounts, :group_message_following_only, :boolean
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class AddGroupAllowPrivateMessageToAccounts < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :accounts, :group_allow_private_message, :boolean
|
||||
|
|
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue