django-validation

Why doesn't django's model.save() call full_clean()?

Why doesn't django's model.save() call full_clean()? Question: I’m just curious if anyone knows if there’s good reason why django’s orm doesn’t call ‘full_clean’ on a model unless it is being saved as part of a model form. Note that full_clean() will not be called automatically when you call your model’s save() method. You’ll need to …

Total answers: 7

How to limit the maximum value of a numeric field in a Django model?

How to limit the maximum value of a numeric field in a Django model? Question: Django has various numeric fields available for use in models, e.g. DecimalField and PositiveIntegerField. Although the former can be restricted to the number of decimal places stored and the overall number of characters stored, is there any way to restrict …

Total answers: 9