Django model validator not working on create

后端 未结 4 1764
抹茶落季
抹茶落季 2020-12-30 23:15

I have model with a field validator

from django.db import models
from django.core.validators import MinValueValidator, MaxValueValidator

 class MyModel(mode         


        
4条回答
  •  执念已碎
    2020-12-30 23:57

    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.

提交回复
热议问题