data model adapted to split between user and profile #11

Merged
gulliver merged 5 commits from split_user_profile into master 2021-09-09 19:56:57 +02:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 1ccc65a9e7 - Show all commits

View File

@ -10,13 +10,23 @@ entity "user" as user {
*id : number <<generated>>
--
*nickname : text(25)
*created: datetime
*updated: datetime
}
entity user_profile {
*id : number <<generated>>
*userid
--
pronouns : text(25)
fullname: text(100)
volunteerwork: text(4000)
freetext: text(4000)
*profile_visible: bool
*created: datetime
*updated: datetime
}
user ||-o{ user_profile : user_has_profile
entity user_address {
*id : number <<generated>>