mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 16:38:18 +00:00
- HCB::BatchPurchaseService for single disbursement per batch - Add hcb_payment_account and hcb_transfer_id to batches - Wire into Letter::Batch#process! and batches controller
6 lines
221 B
Ruby
6 lines
221 B
Ruby
class AddHCBPaymentAccountToBatches < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_reference :batches, :hcb_payment_account, null: true, foreign_key: true
|
|
add_column :batches, :hcb_transfer_id, :string
|
|
end
|
|
end
|