Initial open-source release

This commit is contained in:
Andrey Avtomonov 2026-05-10 23:12:26 +02:00
commit 1a42152e6f
1199 changed files with 257054 additions and 0 deletions

View file

@ -0,0 +1,25 @@
name: journal_lines
table: journal_lines
grain:
- journal_line_id
columns:
- name: journal_line_id
type: number
- name: amount
type: number
- name: dr_cr
type: string
- name: gl_account_id
type: number
- name: journal_entry_id
type: number
joins:
- to: gl_accounts
'on': gl_account_id = gl_accounts.gl_account_id
relationship: many_to_one
- to: accounts
'on': gl_account_id = accounts.account_id
relationship: many_to_one
- to: journal_entries
'on': journal_entry_id = journal_entries.journal_entry_id
relationship: many_to_one