DRF - many_to_one 요청 및 테스트는 POSTMAN을 사용 https://www.django-rest-framework.org/ Comment 모델 준비 # models.py class Comment(models.Model): article = 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) $ python manage.py makemigrations $ python manage.py migrate $ python ..