2024-06-13 15:47:39 +00:00
|
|
|
from django.db import models
|
2025-01-27 15:16:21 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2024-06-13 15:47:39 +00:00
|
|
|
|
|
|
|
# Create your models here.
|
|
|
|
|
|
|
|
|
|
|
|
class Token(models.Model):
|
|
|
|
token = models.UUIDField()
|
2025-01-27 15:16:21 +00:00
|
|
|
label = models.CharField(_("Label"), max_length=250, default="")
|
|
|
|
active = models.BooleanField(_("Active"), default=True)
|