base working fine i think

This commit is contained in:
Jake Pullen
2024-08-09 08:53:02 +01:00
parent 41046c0da1
commit cea3b94b8b
7 changed files with 92 additions and 39 deletions
+24
View File
@@ -0,0 +1,24 @@
# ERD for the Finance DataWarehouse
```mermaid
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"
```