discourse-assign/db/migrate/20230112033741_add_topic_id...

8 lines
158 B
Ruby

# frozen_string_literal: true
class AddTopicIdIndexToAssignments < ActiveRecord::Migration[7.0]
def change
add_index :assignments, :topic_id
end
end