Remove: #611 グループシステム関係のカラムを複数削除 (#618)

This commit is contained in:
KMY(雪あすか) 2024-02-27 13:08:30 +09:00 committed by GitHub
parent 0767212284
commit aec832e257
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 29 additions and 97 deletions

View file

@ -0,0 +1,10 @@
# 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