zitate/person/models.py
Jochen Mehlich 0b84f73cbf
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
model renaming applied
Signed-off-by: Jochen Mehlich <coding@jochenmehlich.de>
2024-09-03 16:30:04 +02:00

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)