Remove unnecessary index

This commit is contained in:
KMY 2023-05-14 09:10:11 +09:00
parent 4f115c7d62
commit 16f05fcaa1

View file

@ -3,6 +3,5 @@
class AddRejectReplyExcludeFollowersToDomainBlocks < ActiveRecord::Migration[6.1] class AddRejectReplyExcludeFollowersToDomainBlocks < ActiveRecord::Migration[6.1]
def change def change
add_column :domain_blocks, :reject_reply_exclude_followers, :boolean, null: false, default: false add_column :domain_blocks, :reject_reply_exclude_followers, :boolean, null: false, default: false
add_index :domain_blocks, :reject_reply_exclude_followers
end end
end end