ktx/python/ktx-sl/sources/b2b_saas/payment_intents.yaml
2026-05-10 23:51:24 +02:00

22 lines
384 B
YAML

name: payment_intents
table: payment_intents
grain:
- payment_intent_id
columns:
- name: payment_intent_id
type: number
- name: amount
type: number
- name: created_at
type: time
role: time
- name: currency
type: string
- name: invoice_id
type: number
- name: status
type: string
joins:
- to: invoices
'on': invoice_id = invoices.invoice_id
relationship: many_to_one