discourse/db/migrate/20150119192813_add_posts_in...

6 lines
131 B
Ruby
Raw Normal View History

class AddPostsIndexIncludingDeleted < ActiveRecord::Migration
def change
add_index :posts, [:user_id, :created_at]
end
end