Merge remote-tracking branch 'origin/master' into merge-upstream

Conflicts:
	db/schema.rb
This commit is contained in:
David Yip
2018-01-09 14:16:45 -06:00
7 changed files with 167 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
class AddIndexOnStatusesForApiV1AccountsAccountIdStatuses < ActiveRecord::Migration[5.1]
disable_ddl_transaction!
def change
safety_assured do
add_index :statuses, [:account_id, :id, :visibility, :updated_at], order: { id: :desc }, algorithm: :concurrently, name: :index_statuses_20180106
end
remove_index :statuses, name: :index_statuses_on_account_id_id
end
end