123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- entity AccountDetails{
- securityQuestion String,
- securityAnswer String,
- phoneNumber String
- }
-
- entity Profile{
- bio String,
- accessible Boolean
- }
-
- entity Friend{
- topFriend Boolean
- }
-
- entity Album{
- name String,
- description String,
- }
-
- entity Photo {
- imageURL String,
- size Long
- }
-
- entity Video {
- videoURL String,
- size Long,
- }
-
- entity Post {
- numberOfComments Long,
- content String,
- likes Long,
- dislikes Long
- }
-
- entity Comment {
- content String,
- likes Long,
- dislikes Long
- }
-
- relationship ManyToOne {
- Comment{commenter(email)} to User
- }
-
- relationship ManyToOne {
- Comment{post} to Post
- }
-
- relationship ManyToOne {
- Post{owner(email)} to User
- }
-
- relationship ManyToOne {
- Photo{post} to Post
- }
-
- relationship ManyToOne {
- Video{post} to Post
- }
-
- relationship ManyToOne {
- Album{owner(email)} to User
- }
-
- relationship ManyToMany {
- Photo{album(name)} to Album
- }
-
- relationship OneToOne {
- AccountDetails{userAccount(email)} to User
- }
-
- relationship OneToOne {
- Profile{userProfile(email)} to User
- }
-
- relationship ManyToOne{
- Friend{user(email)} to User
- }
-
- relationship ManyToOne{
- Friend{friend(email)} to User
- }
-
-
-
-
-
-
-
-
-
|