mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
11 lines
308 B
Ruby
11 lines
308 B
Ruby
class FixPostIndices < ActiveRecord::Migration
|
|
def up
|
|
remove_index :posts, [:forum_thread_id, :created_at]
|
|
add_index :posts, [:forum_thread_id, :post_number]
|
|
end
|
|
|
|
def down
|
|
remove_index :posts, [:forum_thread_id, :post_number]
|
|
add_index :posts, [:forum_thread_id, :created_at]
|
|
end
|
|
end
|