Raphael Gaschignard
Raphael Gaschignard
Of course after thinking about this a bit more I am reminded that slugification exists primarily for URLs and the like. For example if you have a URL scheme like...
yeah in a data migration you'll have to do stuff by hand (copying to through tables etc). If anyone could write up a small guide for steps going from `django-tagging`...
I provide an example of how to do this in #680, but we'll try and document this a bit more
@fildred13 This is a MySQL issue in particular, we can't really do much about case sensitivity checks on this side short of documenting the issue more. (See https://docs.djangoproject.com/en/1.8/ref/databases/#collation-settings). At least...
I guess the deeper issue is that `blank` is settable but `null` is not. I guess that means that you at least need to pass in an empty list for...
@mattions yeah so off the top of my head I think the solution for you is to put `blank=True` into `TagListserializerField()`. Basically the `TagListSerializerField` being declared explicitly means DRF uses...
OK so I spent some time looking at this and I believe the issue comes from this commit back in 2015: [this commit](https://github.com/jazzband/django-taggit/commit/c8f1308a61ce55976a53e14d124772715688d8ac) if you ran migrations before this commit,...
Closing this for now as I think pigletto's explanation is good enough for operations, and (surprisingly?) reports of this are fairly limited, enough so that me trying to write some...
How Django implements `aadd`.... ```python async def aadd(self, *objs, bulk=True): return await sync_to_async(self.add)(*objs, bulk=bulk) ``` I think it would make sense for us to add async variants to methods like...
Fixed in #892