From e96e2ae3536dd0722e7754b13e688f9868abb196 Mon Sep 17 00:00:00 2001 From: MaM Web user Date: Mon, 6 Sep 2021 02:03:36 +0200 Subject: [PATCH] =?UTF-8?q?M=C3=AD=C5=88=20spamu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seminar/migrations/0087_fix_polymorphism.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/seminar/migrations/0087_fix_polymorphism.py b/seminar/migrations/0087_fix_polymorphism.py index e7852c42..9b95f66f 100644 --- a/seminar/migrations/0087_fix_polymorphism.py +++ b/seminar/migrations/0087_fix_polymorphism.py @@ -25,7 +25,8 @@ def fix_ctypes(parent: str, children, apps, schema_editor): # Ostatní instance mají mít explicitně content type pro rodiče new_ct = ContentType.objects.get_for_model(Parent) for obj in Parent.objects.filter(polymorphic_ctype__isnull=True): - log.warn(f"{parent} \"{obj}\" neměl content type -- nejspíš to je instance přímo {parent}!") + # Po úpravě pořadí migrací se tohle stane pro každý problém. Není to správně, ale warning moc otravuje… + log.info(f"{parent} \"{obj}\" neměl content type -- nejspíš to je instance přímo {parent}!") obj.polymorphic_ctype=new_ct obj.save()