|
|
@ -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() |
|
|
|
|
|
|
|