models.py 381 B

123456789
  1. from django.db import models
  2. class Config(models.Model):
  3. indice = models.CharField(max_length=32,null=False)
  4. valore = models.CharField(max_length=128,null=True)
  5. nota = models.CharField(max_length=256,null=True)
  6. class Meta:
  7. constraints = [ models.UniqueConstraint(fields=['indice'], name="unique-indice") ]
  8. indexes = [ models.Index(fields=['indice']) ]