我正在使用django-oscar,并分叉了一些应用程序以使用自定义模型。
尤其是目录模型。默认情况下,有产品,产品类型和产品类别。我正在尝试扩展模型以具有一个collections表,并使每个产品都与一个collection相关联。
我希望建立这种关系,以便在删除集合时删除所有关联的产品,但是删除产品不会删除集合。
除了添加一个新的收集表外,我将产品表扩展为具有一个乘数字段(它将包含用于乘以批发价的整数...如果有更好的方法,请告知)和一个收款表的外键。
根据我的理解,一切看起来都不错。这是我来自派生目录应用程序的models.py:
from django.db import models
class Collection(models.Model):
name = models.CharField(max_length=50)
prod_category = models.CharField(max_length=50)
description = models.TextField()
manufacturer = models.TextField()
num_products = models.IntegerField()
image_url = models.URLField()
from oscar.apps.catalogue.abstract_models import AbstractProduct
class Product(AbstractProduct):
collection = models.ForeignKey(Collection, on_delete=models.CASCADE)
multiplier = models.DecimalField(max_digits=2, decimal_places=1)
from oscar.apps.catalogue.models import *
当我通过manage.py进行迁移时,在询问默认值(稍后我会处理)之后,这似乎很好。
但是,在运行迁移时,出现以下错误输出:
Running migrations:
Applying catalogue.0014_auto_20181211_1617...Traceback (most recent call last):
File "/home/mysite/lib/python3.7/Django-2.1.3-py3.7.egg/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
psycopg2.IntegrityError: insert or update on table "catalogue_product" violates foreign key constraint "catalogue_product_collection_id_e8789e0b_fk_catalogue"
DETAIL: Key (collection_id)=(1) is not present in table "catalogue_collection".
这是因为我需要添加一个字段collection_id吗?
答案 0 :(得分:1)
问题是您指定的默认值不存在。我猜想当要求为迁移指定默认值时,您为集合输入了1
。问题是数据库中没有Collection
对象具有这样的ID,这就是迁移失败的原因。
您要么需要:
使用您指定的默认ID创建一个Collection
对象,然后再尝试添加覆盖的产品模型。
使外键为Collection
可为空,这样就不需要默认值。