0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-04 10:39:43 +08:00
discourse/db/migrate/20120423142820_fix_post_indices.rb
2023-01-09 11:59:41 +00:00

13 lines
340 B
Ruby
Vendored

# frozen_string_literal: true
class FixPostIndices < ActiveRecord::Migration[4.2]
def up
remove_index :posts, %i[forum_thread_id created_at]
add_index :posts, %i[forum_thread_id post_number]
end
def down
remove_index :posts, %i[forum_thread_id post_number]
add_index :posts, %i[forum_thread_id created_at]
end
end