Remove: #608 ドメインブロック「リプライを拒否」 (#624)

This commit is contained in:
KMY(雪あすか) 2024-03-01 12:03:31 +09:00 committed by GitHub
parent dc3aabb4f4
commit 76b24193c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 31 additions and 82 deletions

View file

@ -0,0 +1,9 @@
# frozen_string_literal: true
class RemoveRejectReplyFromDomainBlocks < ActiveRecord::Migration[7.1]
disable_ddl_transaction!
def change
safety_assured { remove_column :domain_blocks, :reject_reply, :boolean, null: false, default: false }
end
end