Sergei Iurchenko

Results 14 comments of Sergei Iurchenko

https://channels.readthedocs.io/en/stable/topics/databases.html#database-sync-to-async is recommended way to wrap. What changes do you expect in django-constance?

I see your point. How do you see expected changed to support this feature? I just do not see any obvious way to implement this.

If you use postgres you can create partial index like ``` class Meta: constraints = ( UniqueConstraint( fields=('test_field',), condition=Q(is_removed=False), name='%(app_label)s_%(class)s_test_field_unique_idx', ), ) ``` and delete **unique=True** from model field. Now...