models.py 327 B

12345678
  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=256,null=True)
  5. class Meta:
  6. constraints = [ models.UniqueConstraint(fields=['indice'], name="unique-indice") ]
  7. indexes = [ models.Index(fields=['indice']) ]