Closed domino8788 closed 4 years ago
해당 DB는 다음 규칙을 따른다.
Collection(users){
Document(id - 타입 : String, 학번이 담기며 동시에 문서의 id 이다.) {
Field(uid) - 타입 : String, userId가 담긴다.
Field(name) - 타입 : String, user의 이름이 담긴다.
Collection(favorites) - user의 즐겨찾기 정보가 담길 Collection
Collection(calendar) - user의 일정정보가 담길 Collection
}
}
설계를 완료했으므로 결과물이나 변동사항이 발생할때까지 이슈를 닫는다.
Collection(users){
Document(id - 타입 : String, 사용자의 uid 이다.) {
Field(id) - 타입 : String, 사용자의 학번이 담긴다.
Collection(favorites) - user의 즐겨찾기 정보가 담길 Collection
Collection(calendar) - user의 일정정보가 담길 Collection
}
}
수정사항을 반영했으므로 이슈를 닫는다.
user 의 데이터를 저장할 users DB 를 작성한다. 다음 정보가 담겨야한다.