0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/plugins/discourse-assign/db/migrate/20211014043735_remove_topic_id_index.rb
2025-07-15 16:38:05 +02:00

7 lines
151 B
Ruby
Vendored

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