Postgresql – Django constraints – only users with specific role can have specific field set (not null)
Trying to figure out if and how can I set conditional constraints like this: Only users with role=='client' can have User.broker field not null. Is it possible to do that using Meta.contstraints or a different mechanism that will take care…