🍚
1. 쉴 때 슬랙에 꼭 공유하고 가기
2. 점심식사, 저녁식사 후 스몰토크 하기
3. 점심시간 13:00 ~ 14:00,
저녁시간 19:00 ~ 20:00
내배캠 끝까지 다 같이 완주해내기!!!
점심 - 14:00 ~ 14:20
저녁 - 20:00 ~ 20:20
막히거나 의논해야할 일이 있으면 수시로!
https://www.figma.com/embed?embed_host=notion&url=https%3A%2F%2Fwww.figma.com%2Fdesign%2FMT6gpq3gXYgGTc9IZM17Wv%2F%25EC%259D%25B4%25EA%25B1%25B0-%25EB%25AC%25B4-%25EB%25B4%25A4%25EB%2582%2598%3Fnode-id%3D0-1%26t%3DfNe5i58tZCuLPkUW-0
Table Users {
id bigint [primary key]
user_id varchar
password varchar
name varchar
email varchar
description varchar //한줄 소개
status enum('ACTIVE','WITHDRAWN') //정상,탈퇴
refresh_token varchar
status_modified_at timestamp
created_at timestamp
modified_at timestamp
}
Table Recipe {
id bigint [primary key]
user_id bigint
title varchar
content varchar
like bigint
created_at datetime
modified_at datetime
}
Table Comments {
id bigint [primary key]
recipe_id bigint
user_id bigint
content varchar
like bigint
created_at datetime
modified_at datetime
}
Table RecipeLikes {
id bigint [primary key]
user_id bigint
recipe_id bigint
created_at datetime
modified_at datetime
}
Table CommentLikes {
id bigint [primary key]
user_id bigint
content_id bigint
created_at datetime
modified_at datetime
}
Ref: Comments.user_id > Users.id // many-to-one
Ref: Recipe.user_id > Users.id // many-to-one
Ref: Comments.recipe_id > Recipe.id // many-to-one
Ref: RecipeLikes.recipe_id > Recipe.id // many-to-one
Ref: RecipeLikes.user_id > Users.id // many-to-one
Ref: CommentLikes.content_id > Comments.id // many-to-one
Ref: CommentLikes.user_id > Users.id // many-to-one