1 class AddChangesetIndexToChangesetComments < ActiveRecord::Migration[6.0]
 
   2   disable_ddl_transaction!
 
   5     remove_index :changeset_comments, [:author_id, :created_at]
 
   6     add_index :changeset_comments, [:changeset_id, :created_at], :algorithm => :concurrently