我正在做这个项目:https://github.com/mirumee/saleor
我想添加一个";user_id";列添加到产品表中。因此,我在第248行添加了以下代码https://github.com/mirumee/saleor/blob/master/saleor/product/models.py#L248
account_user = models.ForeignKey(
Account_User,
related_name="products",
on_delete=models.CASCADE,
)
然而,Django说:;NameError:未定义名称"Account_User";。我该如何解决这个问题?感谢
from ..account.models import User
account_user = models.ForeignKey(
User,
related_name="products",
on_delete=models.CASCADE)