I have model with a field validator
from django.db import models from django.core.validators import MinValueValidator, MaxValueValidator class MyModel(mode
Validators work only with the Forms and model forms. Can't be used with the model definition because it runs at the app side not the DB side.