discourse/db/migrate/20120423142820_fix_post_ind...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
340 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class FixPostIndices < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
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