mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
11 lines
273 B
Ruby
11 lines
273 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddDeletedPostIndexToPosts < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :posts,
|
|
%i[topic_id post_number],
|
|
where: "deleted_at IS NOT NULL",
|
|
name: "idx_posts_deleted_posts"
|
|
end
|
|
end
|