-
Notifications
You must be signed in to change notification settings - Fork 0
2023 04 03 개발 일지
Jinho Kim edited this page Apr 2, 2023
·
6 revisions
- get(Read todo), post(Create todo), delete(Delete todo)
- get(Read board), post(Create & update board), delete(Delete board)
- user와 todo 테이블 2개를 연결해야 되는데 이 부분에서 뭔가 계속 안되서...
일단은 user 테이블 안에 todos: string[] 같은 형식으로 집어넣고 진행하기로 했다.
원래는 이런 식으로 하면 당연히 안되고 관계형으로 해야 한다.
트센 과제할 때 많이 배워야겠다...
- 말로만 듣던 CRUD를 내가 이미 만들고 있었다.