base working fine i think
This commit is contained in:
+24
@@ -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"
|
||||
```
|
||||
Reference in New Issue
Block a user