mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
11 lines
453 B
Ruby
11 lines
453 B
Ruby
|
class FixNotNullStockExchangeData < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
change_column_null :stock_exchanges, :currency_code, true
|
||
|
change_column_null :stock_exchanges, :currency_symbol, true
|
||
|
change_column_null :stock_exchanges, :currency_name, true
|
||
|
change_column_null :stock_exchanges, :city, true
|
||
|
change_column_null :stock_exchanges, :timezone_name, true
|
||
|
change_column_null :stock_exchanges, :timezone_abbr, true
|
||
|
end
|
||
|
end
|