backend/checker/models.py

12 lines
256 B
Python
Raw Normal View History

2022-08-26 20:04:45 +03:00
import uuid as uuid
2022-08-26 17:00:34 +03:00
from django.db import models
# Create your models here.
2022-08-26 20:04:45 +03:00
class Docx(models.Model):
uuid = models.UUIDField(
default=uuid.uuid4, editable=False, unique=True, primary_key=True
)
file = models.FileField(upload_to="")