我有一个南方数据迁移,它试图根据其他模型中的数据创建新对象。在尝试为给定的“目标”模型创建新对象时,我不断得到:
Cannot assign "<ContentType: ContentType object>": "Publishing.content_type" must be a "ContentType" instance.
当通过South冻结ORM访问时,“实例”似乎有问题,例如:
ContentType = orm['contenttypes.ContentType']
content_type_kwargs = {
'model': ContentModel._meta.module_name,
'app_label': ContentModel._meta.app_label, }
content_type = ContentType.objects.get(**content_type_kwargs)
# further down
publishing_kwargs = {
'site': Site.objects.get_current(),
'publishing_type': publishing_type,
'start': start,
'content_type': content_type,
'object_id': content_object.id, }
publishing = orm.Publishing(**publishing_kwargs) # Produces the error above
现在我已多次验证content_type
实际上是ContentType的一个实例 - 但不知何故django不这么认为。
答案 0 :(得分:8)
这是由于南方处理模型的方式。您必须冻结迁移过程中需要使用的任何模型。应用程序中迁移所在的模型会自动冻结;你必须手动冻结的任何其他东西:
python manage.py schemamigration --auto yourapp --freeze contenttypes
如果您需要冻结多个应用,请根据需要多次重复--freeze
参数:
python manage.py schemamigration --auto yourapp --freeze contenttypes --freeze someotherapp ...
另一件事。当您访问这些额外的冻结模型时,您必须使用旧式的南API:
orm['contenttypes.contenttype'].objects.all()
orm.ContentType
之类的内容无效。