As of Django 2.2, you can add database constraints to your models. I find database constraints extremely valuable and one of those few features that Django really needed.
This blog post is more of a quick reference for myself when adding constraints to my Django models
Django has support for both CheckConstraints
and UniqueConstraints
.&n…