Add domainblocks to reject_reply_exclude_followers

This commit is contained in:
KMY 2023-05-12 21:46:28 +09:00
parent f84a002675
commit 3fa8efaf93
12 changed files with 50 additions and 9 deletions

View file

@ -0,0 +1,8 @@
# frozen_string_literal: true
class AddRejectReplyExcludeFollowersToDomainBlocks < ActiveRecord::Migration[6.1]
def change
add_column :domain_blocks, :reject_reply_exclude_followers, :boolean, null: false, default: false
add_index :domain_blocks, :reject_reply_exclude_followers
end
end