mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-25 08:09:38 +02:00
12 lines
298 B
Ruby
12 lines
298 B
Ruby
|
class RemoveStockExchanges < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
drop_table :stock_exchanges do |t|
|
||
|
t.string :name, null: false
|
||
|
t.string :acronym
|
||
|
t.string :mic, null: false
|
||
|
t.string :country, null: false
|
||
|
t.string :country_code, null: false
|
||
|
end
|
||
|
end
|
||
|
end
|