You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need a Nullable CountryField with multiple=True due to some required denormalisation in the database in combination with a unique_together (NULL is treated different for unique then '', where there can be multiple NULL values, but only one '').
So instead of storing '', we need to store NULL. This is currently not possible due to an check on the model. Would it be possible to remove this error and make it a warning instead?
The text was updated successfully, but these errors were encountered:
We need a Nullable CountryField with multiple=True due to some required denormalisation in the database in combination with a unique_together (NULL is treated different for unique then '', where there can be multiple NULL values, but only one '').
So instead of storing '', we need to store NULL. This is currently not possible due to an check on the model. Would it be possible to remove this error and make it a warning instead?
The text was updated successfully, but these errors were encountered: