models.py 394 B

123456789101112131415
  1. from django.db import models
  2. class Product(models.Model):
  3. name = models.CharField(max_length=255)
  4. price = models.IntegerField()
  5. discounted_price = models.IntegerField()
  6. class Meta:
  7. constraints = [
  8. models.CheckConstraint(
  9. models.Q(price__gt=models.F('discounted_price')),
  10. 'price_gt_discounted_price'
  11. )
  12. ]