All checks were successful
Django Backend Validation / build (debian-latest, 3.10) (push) Successful in 2m55s
Django Backend Validation / build (debian-latest, 3.12) (push) Successful in 1m49s
Django Backend Validation / build (debian-latest, 3.11) (push) Successful in 1m52s
Django Backend Validation / build (ubuntu-latest, 3.10) (push) Successful in 19s
Django Backend Validation / build (ubuntu-latest, 3.11) (push) Successful in 18s
Django Backend Validation / build (ubuntu-latest, 3.12) (push) Successful in 14s
Signed-off-by: Jochen Mehlich <coding@jochenmehlich.de>
7 lines
321 B
Python
7 lines
321 B
Python
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) |