mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 14:19:39 +02:00
* User tickers as primary lookup symbol instead of isin * Add security price provider * Fetch security prices in bulk to improve sync performance * Fetch prices in bulk, better mocking for tests
7 lines
240 B
Ruby
7 lines
240 B
Ruby
class ChangePrimaryIdentifierForSecurity < ActiveRecord::Migration[7.2]
|
|
def change
|
|
rename_column :securities, :symbol, :ticker
|
|
remove_column :securities, :isin, :string
|
|
rename_column :security_prices, :isin, :ticker
|
|
end
|
|
end
|