User object
| Attribute |
Description |
Type |
Require |
| pk |
Primary key |
Integer |
True |
| email |
유저 이메일 |
String(email) |
True |
| password |
비밀번호 |
String |
True |
| nickname |
유저 닉네임 |
String |
True |
| username |
유저 이름 |
String |
False |
| profile_img |
프로필 이미지 |
img file |
False |
| relation |
유저와 관계 맺은 다른 유저 |
User Object |
False |
| group |
유저가 등록된 그룹 |
Integer |
False |
UserRelation object
| Attribute |
Description |
Type |
Require |
| pk |
Primary Key |
Integer |
True |
| from_user |
follow 하려는 유저 |
User object |
True |
| to_user |
follow 의 대상 |
Integer |
True |
| created_date |
관계 생성 날짜 |
String |
False |
Membership object
| Attribute |
Description |
Type |
Require |
| pk |
Primary Key |
Integer |
True |
| user |
group 에 속하게 만들 유저 |
User object |
True |
| group |
유저가 속할 group |
Integer |
True |
| joined_date |
membership 생성 날짜 |
String |
False |