Tags
- ORM
- delete
- 통계학
- Tree
- drf
- M:N
- 이진트리
- 완전검색
- 그리디
- SQL
- count
- outer join
- 스택
- create
- distinct
- 백트래킹
- 큐
- regexp
- 뷰
- DB
- N:1
- 쟝고
- Article & User
- Vue
- migrations
- stack
- update
- Django
- 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 | 31 |
Notice
Recent Posts
Link
목록2024/05/22 (1)
데이터 분석 기술 블로그
1. 사전 준비1-1. Comment 모델 정의Comment 클래스 정의 및 데이터 베이스 초기화# articles/models.pyclass Comment(models.Model): artilce = models.ForeignKey(Article, on_delete=models.CASCADE content = models.TextField() created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True)Migration 및 fixtures 데이터 로드$ python manage.py makemigrations$ python manage.py migrate$ pyt..
SW/백엔드
2024. 5. 22. 09:00