6 lines
196 B
Ruby
6 lines
196 B
Ruby
|
class AddDeletedPostIndexToPosts < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :posts, [:topic_id, :post_number], where: 'deleted_at IS NOT NULL', name: 'idx_posts_deleted_posts'
|
||
|
end
|
||
|
end
|