2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2019-04-08 16:37:54 +08:00
|
|
|
class AddSearchDataIndexes < ActiveRecord::Migration[5.2]
|
|
|
|
|
def change
|
|
|
|
|
add_index :topic_search_data, %i[topic_id version locale]
|
|
|
|
|
add_index :post_search_data, %i[post_id version locale]
|
|
|
|
|
end
|
|
|
|
|
end
|