ORM migration index name mismatch. Can't drop existing index.

2022-05-16 Thread Konstantin Kuchkov
Context: In an app called "exams", I have a model named Capture which has a unique CharField named "uuid". I was trying to convert this field to a UUIDField and I was getting this error: django.db.utils.ProgrammingError: operator class "varchar_pattern_ops" does not accept data type uuid Lookin

Re: register_converter doesn't work with ASGI

2021-06-21 Thread Konstantin Kuchkov
Thanks for the explanation! To get it working, I will replace my model converters with basic converters and do corresponding lookups in the views. On Sunday, 20 June 2021 at 16:16:58 UTC-7 Andrew Godwin wrote: > Ah yes, that's because the URL parsing/conversion all happens in the main > (async