mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
22 lines
384 B
YAML
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
|