mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
12 lines
230 B
Ruby
12 lines
230 B
Ruby
|
class CreateSecurities < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
create_table :securities, id: :uuid do |t|
|
||
|
t.string :isin, null: false
|
||
|
t.string :symbol
|
||
|
t.string :name
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|