frankfurter/db/migrate/016_add_pivot_currency_to_providers.rb

8 lines
124 B
Ruby
Raw Normal View History

2026-05-21 01:38:14 -06:00
# frozen_string_literal: true
Sequel.migration do
change do
add_column :providers, :pivot_currency, String
end
end