mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/backend.git
synced 2024-11-23 00:36:35 +03:00
12 lines
256 B
Python
12 lines
256 B
Python
import uuid as uuid
|
|
from django.db import models
|
|
|
|
# Create your models here.
|
|
|
|
|
|
class Docx(models.Model):
|
|
uuid = models.UUIDField(
|
|
default=uuid.uuid4, editable=False, unique=True, primary_key=True
|
|
)
|
|
file = models.FileField(upload_to="")
|