discourse/db/migrate/20160719002225_add_deleted_...

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

11 lines
273 B
Ruby
Raw Normal View History

# 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