https://docs.djangoproject.com/en/4.1/topics/db/examples/many_to_one/ Django The web framework for perfectionists with deadlines. docs.djangoproject.com 디비 구성을 하다보면 한개의 모델에 여러개의 다른 모델을 연결하고 싶을때가 있다. 결국 모델간에 1:N 대응을 만드는 일이다. 코드로는 아래와 같다. from django.db import models class Reporter(models.Model): first_name = models.CharField(max_length=30) last_name = models.CharField(max_length=30) email = model..