-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
47 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
entity Student | ||
attribute Naam | ||
attribute Naam |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
entity patient | ||
|
||
entity division | ||
|
||
entity room | ||
|
||
entity medicin | ||
|
||
entity prescription | ||
|
||
entity doctor | ||
|
||
relation Houses | ||
one required division | ||
multiple optional room | ||
|
||
relation Sleeps(Sleeps in) | ||
one required room | ||
multiple optional patient | ||
|
||
relation Weekly(Gets weekly) | ||
one required patient | ||
multiple optional prescription | ||
|
||
relation PrescriptionMedicin(Contains) | ||
one optional prescription | ||
multiple required medicin | ||
|
||
relation PrescriptionDoctor(Prescribes) | ||
one required doctor | ||
multiple optional prescription | ||
|
||
relation PatientDoctor(Has) | ||
multiple optional patient | ||
one required doctor | ||
|