11 lines
306 B
Ruby
11 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
|