123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- entity User {
- userId Long,
- }
-
- entity UserProfile {
- profileId Long,
- firstName String,
- lastName String,
- userStack String,
- }
-
- entity Cohort {
- cohortId Double,
- gradDate String
- }
-
- entity Employer {
- employerId Long,
- companyName String,
- city String,
- state String
- }
-
- entity Post {
- postId Long,
- timestamp LocalDate,
- content String,
- likes String,
- }
-
- entity Privacy {
- privacyId Long,
- publicView Boolean,
- cohortView Boolean,
- employerView Boolean
- }
-
-
- relationship ManyToOne {
- UserProfile{employer} to Employer
- }
-
- relationship ManyToOne {
- Post{poster} to User
- }
-
- relationship ManyToOne {
- UserProfile{cohort} to Cohort
- }
-
- relationship OneToOne {
- UserProfile{user} to User
- }
-
- relationship OneToOne {
- Post{poster} to User
- }
-
- relationship OneToOne {
- UserProfile{cohort} to Cohort
- }
-
- relationship OneToOne {
- UserProfile{employer} to Employer
- }
-
- relationship OneToOne {
- Post{privacySetting} to Privacy
- }
-
-
-
-
-
-
-
-
|