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

@ -0,0 +1,9 @@
# frozen_string_literal: true
class RemoveGroupMessageFollowingOnlyFromAccounts < ActiveRecord::Migration[6.1]
disable_ddl_transaction!
def change
safety_assured { remove_column :accounts, :group_message_following_only, :boolean }
end
end