PERF: Add index for `post_search_data` and `topic_search_data`.
This commit is contained in:
parent
4791d992dc
commit
b7d8bbc095
|
@ -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
|
Loading…
Reference in New Issue