Advertisement
Patasuss

DB-Keys

Dec 10th, 2015
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. >Person
  2. persID (PK)
  3.  
  4. >PersonGroup
  5. pgrpID (PK)
  6.  
  7. >PersonGroupMember
  8. pgrpID (FK, PK)
  9. persID (FK, PK)
  10.  
  11. >Termin
  12. terminID (PK)
  13.  
  14. >TerminAttendee
  15. terminID (FK, PK)
  16. persID (FK, PK)
  17.  
  18. >Group
  19. groupID (PK)
  20.  
  21. >GroupMember
  22. groupID (FK, PK)
  23. persID (FK, PK)
  24.  
  25. >Course
  26. groupID (PK)
  27.  
  28. >GradeDefinition
  29. gradeID (PK)
  30. groupID (FK, PK)
  31.  
  32. >Grade
  33. gradeId (FK, PK)
  34. persID (FK, PK)
  35.  
  36. >GradeVersions
  37. groupID (FK, PK)
  38. gradeID (FK, PK)
  39. version (PK)
  40. calcSpec
  41.  
  42. >SystemNotification
  43. snID (PK)
  44. groupID (FK, PK)
  45.  
  46. >Right
  47. groupID (FK, PK)
  48. rightName (PK)
  49.  
  50. >RightValues
  51. groupID (FK, PK)
  52. rightName (FK, PK)
  53. persID (FK, PK)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement