8 lines
124 B
Ruby
8 lines
124 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
Sequel.migration do
|
||
|
|
change do
|
||
|
|
add_column :providers, :pivot_currency, String
|
||
|
|
end
|
||
|
|
end
|