suspending most annoying DUE checks
maybe, not forever...
This commit is contained in:
parent
cdbef17af3
commit
388db03fc0
2 changed files with 41 additions and 42 deletions
|
|
@ -3,41 +3,41 @@
|
|||
![[ER.svg]]
|
||||
|
||||
<details>
|
||||
@startuml
|
||||
@startuml
|
||||
|
||||
entity Promise {
|
||||
* ID: uuid
|
||||
--
|
||||
* text: text
|
||||
* due: datetime
|
||||
BeneficiaryID: uuid
|
||||
ParentPromiseID: uuid
|
||||
}
|
||||
entity Promise {
|
||||
* ID: uuid
|
||||
--
|
||||
* text: string
|
||||
due: datetime
|
||||
BeneficiaryID: uuid
|
||||
ParentPromiseID: uuid
|
||||
}
|
||||
|
||||
entity Beneficiary {
|
||||
* ID: uuid
|
||||
--
|
||||
* name: string
|
||||
}
|
||||
entity Beneficiary {
|
||||
* ID: uuid
|
||||
--
|
||||
* name: string
|
||||
}
|
||||
|
||||
entity Commitment {
|
||||
* ID: uuid
|
||||
--
|
||||
PromiseID: int
|
||||
CommiterID: int
|
||||
due: datetime
|
||||
}
|
||||
entity Commitment {
|
||||
* ID: uuid
|
||||
--
|
||||
PromiseID: uuid
|
||||
CommiterID: uuid
|
||||
due: datetime
|
||||
}
|
||||
|
||||
entity Commiter {
|
||||
* ID: int
|
||||
--
|
||||
* name: string
|
||||
}
|
||||
entity Commiter {
|
||||
* ID: uuid
|
||||
--
|
||||
* name: string
|
||||
}
|
||||
|
||||
Commitment }|--|| Promise : belongs to
|
||||
Commitment }|--|| Commiter : made by
|
||||
Promise }o--|| Beneficiary : has
|
||||
Promise }--o Promise : parent of
|
||||
Commitment }|--|| Promise : belongs to
|
||||
Commitment }|--|| Commiter : made by
|
||||
Promise }o--|| Beneficiary : has
|
||||
Promise }--o Promise : parent of
|
||||
|
||||
@enduml
|
||||
</details>
|
||||
@enduml
|
||||
</details>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue