Implement holdings for lunch flow (#590)

* Implement holdings for lunch flow

* Implement holdings function call
This commit is contained in:
soky srm
2026-01-09 13:14:14 +01:00
committed by GitHub
parent 6ebe8da928
commit ca4fb7995c
25 changed files with 740 additions and 16 deletions

View File

@@ -0,0 +1,6 @@
class AddHoldingsColumnsToLunchflowAccounts < ActiveRecord::Migration[7.2]
def change
add_column :lunchflow_accounts, :holdings_supported, :boolean, default: true, null: false
add_column :lunchflow_accounts, :raw_holdings_payload, :jsonb
end
end