10 lines
291 B
Ruby
10 lines
291 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveGroupAttrsFromAccounts < ActiveRecord::Migration[7.1]
|
|
def change
|
|
safety_assured do
|
|
remove_column :accounts, :group_allow_private_message, :boolean
|
|
remove_column :account_stats, :group_activitypub_count, :integer
|
|
end
|
|
end
|
|
end
|