mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 07:39:39 +02:00
7 lines
208 B
Ruby
7 lines
208 B
Ruby
|
class AddExchangeOperatingMicToSecurities < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
add_column :securities, :exchange_operating_mic, :string
|
||
|
add_index :securities, :exchange_operating_mic
|
||
|
end
|
||
|
end
|