我在产品和类别的项目中使用墨盒和夹层,我正在尝试将ManyToManyField添加到我的自定义模型中。
from cartridge.shop.models import Product, Category
class BaseProduct(Product):
(...)
related_categories = models.ManyToManyField(Category, blank=True, through='CategoryLink')
class CategoryLink(models.Model):
category = models.ForeignKey(Category)
product = models.ForeignKey(BaseProduct)
为了完整性,他们的模型是:
类别:https://github.com/stephenmcd/cartridge/blob/master/cartridge/shop/models.py#L341
产品:https://github.com/stephenmcd/cartridge/blob/master/cartridge/shop/models.py#L105
但是,当我尝试执行迁移时,这会给我以下错误:
Operations to perform:
Apply all migrations: admin, auth, blog, brochures, case_studies, conf, contenttypes, core, django_comments, forms, galleries, generic, mezzanine_blocks, pages, quotes, redirects, services, sessions, shop, sites, stevensons_shop, stevensons_user, twitter, utilities
Running migrations:
Applying stevensons_shop.0057_baseproduct_related_categories...Traceback (most recent call last):
File "/home/vagrant/virtualenvs/mezzanine/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
psycopg2.ProgrammingError: there is no unique constraint matching given keys for referenced table "stevensons_shop_baseproduct"
我做错了什么?甚至可以在子类对象上添加m2m吗?我是否需要对类别模型进行修改?
答案 0 :(得分:0)
您有一个型号BaseProduct,其m2m与Category类别。
模型CategoryLink是m2m关系的重复。 它是蟒蛇的禅,你违反了。 “不要重复自己”。 删除m2m字段或映射表(CategoryLink)。 这应该可以正常工作。
我个人建议使用映射表而不是m2m字段。 在我看来,它更敏捷。
希望你能得到你所要求的。