From 4e75350d8942414604fb97e70762b9e1c9d04c87 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Tue, 13 Jan 2026 11:50:14 +0100 Subject: [PATCH] Fix migration to prepare for Django 5 (cherry picked from commit 83404a556ede04381ef9066f704e0321243aa421) --- .../app/migrations/0035_alter_blob_content_ptr_and_more.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pulp_container/app/migrations/0035_alter_blob_content_ptr_and_more.py b/pulp_container/app/migrations/0035_alter_blob_content_ptr_and_more.py index 2d63445c5..098c87ce9 100644 --- a/pulp_container/app/migrations/0035_alter_blob_content_ptr_and_more.py +++ b/pulp_container/app/migrations/0035_alter_blob_content_ptr_and_more.py @@ -121,9 +121,7 @@ class Migration(migrations.Migration): migrations.AlterField( model_name="manifest", name="listed_manifests", - field=models.ManyToManyField( - through="container.ManifestListManifest", to="container.manifest" - ), + field=models.ManyToManyField(through='container.ManifestListManifest', through_fields=('image_manifest', 'manifest_list'), to='container.manifest'), ), migrations.AlterField( model_name="manifestsignature",