PERF: Add index for post_search_data and topic_search_data.

This commit is contained in:
Guo Xiang Tan 2019-04-08 16:37:54 +08:00
parent 4791d992dc
commit b7d8bbc095

View File

@ -0,0 +1,6 @@
class AddSearchDataIndexes < ActiveRecord::Migration[5.2]
def change
add_index :topic_search_data, [:topic_id, :version, :locale]
add_index :post_search_data, [:post_id, :version, :locale]
end
end