Tags
- DB
- create
- 큐
- 뷰
- Vue
- Tree
- Article & User
- delete
- ORM
- 통계학
- drf
- 스택
- update
- 이진트리
- migrations
- 그리디
- stack
- 쟝고
- N:1
- count
- regexp
- SQL
- 트리
- 백트래킹
- distinct
- 완전검색
- M:N
- Django
- outer join
- Queue
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Notice
Recent Posts
Link
목록comment & user (1)
데이터 분석 기술 블로그
1. Comment-User 모델 관계 설정User 외래 키를 정의합니다.# articles/models.pyclass Comment(models.Model): article = models.ForeignKey(Article, on_delete=models.CASCADE) user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE) content = models.CharField(max_length=200) created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True)2. Migrat..
SW/DB
2024. 4. 25. 09:36