mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
23 lines
384 B
YAML
23 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
|