Market data sync refinements (#2252)

* Exchange rate syncer implementation

* Security price syncer

* Fix issues with provider API

* Add back prod schedule

* Add back price and exchange rate syncs to account syncs

* Remove unused stock_exchanges table
This commit is contained in:
Zach Gollwitzer
2025-05-16 14:17:56 -04:00
committed by GitHub
parent 6917cecf33
commit 6dc1d22672
38 changed files with 1206 additions and 1615 deletions

View File

@@ -0,0 +1,11 @@
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