django 에서 ManyToMany 필드를 사용 할 때 through 를 사용하여 중간 테이블을 지정하여 사용 할 수 있다. Django ManyToManyField에 필드 확장하기 class Products(models.Model): # 상품정보 brand = models.ForeignKey(Brand, on_delete=models.CASCADE) products_name = models.CharField('상품명', max_length=50) original_price = models.IntegerField('정상가') discount_price = models.IntegerField('할인가') discount_rate = models.DecimalField('할인율', max_digits=3,..