20200119112504_add_public_index_to_statuses.rb 487 B

12345678910111213
  1. # frozen_string_literal: true
  2. class AddPublicIndexToStatuses < ActiveRecord::Migration[5.2]
  3. disable_ddl_transaction!
  4. def up
  5. add_index :statuses, [:id, :account_id], name: :index_statuses_public_20200119, algorithm: :concurrently, order: { id: :desc }, where: 'deleted_at IS NULL AND visibility = 0 AND reblog_of_id IS NULL AND ((NOT reply) OR (in_reply_to_account_id = account_id))'
  6. end
  7. def down
  8. remove_index :statuses, name: :index_statuses_public_20200119
  9. end
  10. end