Further improve the media attached status query for accounts (#16106)
This commit is contained in:
parent
f78cbc0c32
commit
d0fc69d721
5 changed files with 18 additions and 5 deletions
|
@ -0,0 +1,13 @@
|
|||
class AddIndexOnMediaAttachmentsAccountIdStatusId < ActiveRecord::Migration[5.2]
|
||||
disable_ddl_transaction!
|
||||
|
||||
def up
|
||||
add_index :media_attachments, [:account_id, :status_id], order: { status_id: :desc }, algorithm: :concurrently
|
||||
remove_index :media_attachments, :account_id, algorithm: :concurrently
|
||||
end
|
||||
|
||||
def down
|
||||
add_index :media_attachments, :account_id, algorithm: :concurrently
|
||||
remove_index :media_attachments, [:account_id, :status_id], order: { status_id: :desc }, algorithm: :concurrently
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue