frankfurter/db/migrate/007_add_provider_currency_indexes.rb
BadMark d0a43e357a
Some checks failed
CI/CD Pipeline / test (push) Has been cancelled
CI/CD Pipeline / publish (push) Has been cancelled
CI/CD Pipeline / release (push) Has been cancelled
up
2026-05-21 01:38:14 -06:00

10 lines
306 B
Ruby

# frozen_string_literal: true
# rubocop:disable Sequel/ConcurrentIndex
Sequel.migration do
change do
add_index :rates, [:provider, :quote], name: :rates_provider_quote_index
add_index :rates, [:provider, :base], name: :rates_provider_base_index
end
end
# rubocop:enable Sequel/ConcurrentIndex