Ajout du module comm_op dans reskreen

This commit is contained in:
Ambulance Clerc
2023-10-11 11:44:20 +02:00
parent 7d37cfd1df
commit 808dfd9ed3
4 changed files with 40 additions and 9 deletions

View File

@@ -1,9 +1,11 @@
from django.db import models
from django.conf import settings
from django.utils import timezone
import uuid
# Create your models here.
class comm_opMessage(models.Model):
uuid = models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True)
sKey = models.CharField("Clé d'identification", max_length=100)
sTitle = models.CharField('Titre', max_length=250)
sDesc = models.TextField('Description')