Some checks failed
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Failing after 12m0s
20 lines
416 B
Plaintext
20 lines
416 B
Plaintext
digraph {
|
|
Budget
|
|
RecurringCost
|
|
SavingGoal
|
|
Tag
|
|
Transaction
|
|
Account
|
|
BankConnection
|
|
|
|
BankConnection -> Transaction [label="imports into"]
|
|
BankConnection -> Account [label="references"]
|
|
|
|
Transaction -> Account [label="references"]
|
|
Transaction -> Tag [label="references"]
|
|
|
|
Budget -> Tag [label="references"]
|
|
RecurringCost -> Tag [label="references"]
|
|
SavingGoal -> Tag [label="references"]
|
|
}
|