discourse-assign/db/migrate/20211014043735_remove_topic...

8 lines
151 B
Ruby

# frozen_string_literal: true
class RemoveTopicIdIndex < ActiveRecord::Migration[6.1]
def change
remove_index :assignments, :topic_id
end
end