joined 모델의 작업별 접근 table
모든 query가 모든 child를 join할 필요는 없다.
| 작업 | parent | child | link |
|---|---|---|---|
| 공통 목록 | read | none | optional |
| text 상세 | read | text | none |
| title 수정 | update | none | none |
| 게시글 연결 | read | none | insert |
| 삭제 | delete | cascade | restrict first |
모든 query가 모든 child를 join할 필요는 없다.
| 작업 | parent | child | link |
|---|---|---|---|
| 공통 목록 | read | none | optional |
| text 상세 | read | text | none |
| title 수정 | update | none | none |
| 게시글 연결 | read | none | insert |
| 삭제 | delete | cascade | restrict first |