mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
20 lines
326 B
YAML
20 lines
326 B
YAML
name: payments
|
|
table: payments
|
|
grain:
|
|
- payment_id
|
|
columns:
|
|
- name: payment_id
|
|
type: number
|
|
- name: amount
|
|
type: number
|
|
- name: invoice_id
|
|
type: number
|
|
- name: method
|
|
type: string
|
|
- name: payment_date
|
|
type: time
|
|
role: time
|
|
joins:
|
|
- to: invoices
|
|
'on': invoice_id = invoices.invoice_id
|
|
relationship: many_to_one
|