Files
data_pipeline_for_YNAB/docs/ERD.md
T
2024-08-09 08:53:02 +01:00

486 B

ERD for the Finance DataWarehouse

erDiagram
    ACCOUNTS {
        int account_id
        string account_name
        string account_type
        boolean on_budget
        boolean closed
        text note
        decimal balance
        decimal cleared_balance
        decimal uncleared_balance
        boolean deleted
    }
    
    ACCOUNT_TYPES {
        int account_type_id
        string account_type_name
    }
    
    ACCOUNTS ||--o{ ACCOUNT_TYPES : "has type"