Django Models Part 4 (Model validation, Model Meta, Abstract Model class)
Model Field Validation
To validate a model field on application level we can create up a validator which is a callable that take the value to be validated and raises error (ValidationError to be precise) if the value doesn't meet the criteria or it i...
djangotherightway.com6 min read