1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-22 22:59:39 +02:00
Maybe/db/migrate/20240710182529_create_securities.rb

12 lines
230 B
Ruby
Raw Normal View History

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