Anna Vracheva
Results
1
comments of
Anna Vracheva
@beruic you can try this workaround instead of the `get_unique_together_constraints` ``` constraints = [ models.UniqueConstraint( "fielda", "fieldb", name="%(app_label)s_%(class)s_fielda_unique_on_fieldb", condition=models.Q(fielda__isnull=False), ), ] ```