我正在尝试迁移使用jazzband django-taggit的Django应用程序 我得到的错误是:
django.db.utils.IntegrityError: could not create unique index "taggit_taggeditem_content_type_id_object_i_4bb97a8e_uniq"
DETAIL: Key (content_type_id, object_id, tag_id)=(41, 596, 242) is duplicated.
有问题的迁移内容为:
migrations.AlterUniqueTogether(
name="taggeditem", unique_together={("content_type", "object_id", "tag")}
)
翻译为以下SQL:
ALTER TABLE "taggit_taggeditem" ADD CONSTRAINT "taggit_taggeditem_content_type_id_object_i_4bb97a8e_uniq" UNIQUE ("content_type_id", "object_id", "tag_id");
COMMIT;
检查有问题的表我得到了:
# SELECT * FROM public.taggit_taggeditem WHERE tag_id=242 ORDER BY object_id;
id | tag_id | object_id | content_type_id
------+--------+-----------+-----------------
691 | 242 | 356 | 41
2904 | 242 | 356 | 41
680 | 242 | 486 | 41
2893 | 242 | 486 | 41
683 | 242 | 596 | 41
2896 | 242 | 596 | 41
解决django.db.utils.IntegrityError
错误并成功完成迁移的建议方法是什么?我认为object_id 486和356(+几个)也会发生同样的情况。
答案 0 :(得分:0)
在迁移模型之前,您应该制作一个data migration。因此,您最好先删除迁移文件,然后使用以下命令进行数据迁移:
python3 manage.py makemigrations --empty app_name
在此迁移中,可能看起来像:
from django.db import migrations
from django.db.models import Exists, OuterRef
def remove_duplicates(apps, schema_editor):
Model = apps.get_model('app_name', 'ModelName')
Model.objects.annotate(
has_dup=Exists(
Model.objects.filter(
pk__lt=OuterRef('pk'),
content_type_id=OuterRef('content_type_id'),
object_id=OuterRef('object_id'),
tag_id=OuterRef('tag_id'),
)
)
).filter(has_dup=True).delete()
class Migration(migrations.Migration):
dependencies = [
('app_name', '1234_some_migration'),
]
operations = [
migrations.RunPython(remove_duplicates),
]
分别用应用程序名称和模型名称替换 app_name
和 ModelName
的位置(并检查其是否依赖于前一个迁移文件)。
因此,我们在这里寻找包含主键小于当前主键的重复数据的Model
。我们将删除此类记录。
接下来,您将再次为该应用进行迁移:
python3 manage.py makemigrations app_name
我(强烈)建议您在运行数据库之前先备份数据库,因为数据迁移总是很复杂。