Tags
- 이진트리
- SQL
- Queue
- 스택
- stack
- 뷰
- 백트래킹
- N:1
- count
- create
- 쟝고
- 큐
- update
- regexp
- Django
- migrations
- distinct
- Vue
- delete
- Tree
- drf
- outer join
- 완전검색
- Article & User
- 트리
- 그리디
- ORM
- M:N
- DB
- 통계학
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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