mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
10 lines
245 B
Ruby
10 lines
245 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IndexTopicsForFrontPage < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :topics, %i[deleted_at visible archetype id]
|
|
# covering index for join
|
|
add_index :topics, %i[id deleted_at]
|
|
end
|
|
end
|