from django.db import models import uuid # Create your models here. class QuotePersonGroup(models.Model): label = models.CharField(max_length=255, null=False, unique=False) id = models.UUIDField(default=uuid.uuid4, editable = False, primary_key = True, unique = True) description = models.TextField(null=True)