You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
607 B
14 lines
607 B
5 years ago
|
class UpdateStatusesIndex < ActiveRecord::Migration[5.2]
|
||
|
disable_ddl_transaction!
|
||
|
|
||
|
def up
|
||
|
safety_assured { add_index :statuses, [:account_id, :id, :visibility, :updated_at], where: 'deleted_at IS NULL', order: { id: :desc }, algorithm: :concurrently, name: :index_statuses_20190820 }
|
||
|
remove_index :statuses, name: :index_statuses_20180106
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
safety_assured { add_index :statuses, [:account_id, :id, :visibility, :updated_at], order: { id: :desc }, algorithm: :concurrently, name: :index_statuses_20180106 }
|
||
|
remove_index :statuses, name: :index_statuses_20190820
|
||
|
end
|
||
|
end
|