18 lines
799 B
Python
18 lines
799 B
Python
|
from django.db import models
|
||
|
|
||
|
from fwd_api.constant.common import FileCategory
|
||
|
from fwd_api.models import SubscriptionRequest
|
||
|
from fwd_api.models.fields.EncryptedCharField import EncryptedCharField
|
||
|
from django.utils import timezone
|
||
|
import uuid
|
||
|
|
||
|
|
||
|
class SubscriptionRequestFile(models.Model):
|
||
|
code = models.CharField(max_length=300, default=f'FIL{uuid.uuid4().hex}')
|
||
|
file_name = models.CharField(max_length=300, default=None)
|
||
|
file_path = EncryptedCharField(max_length=500, default=None)
|
||
|
file_category = models.CharField(max_length=200, default=FileCategory.Origin.value)
|
||
|
request = models.ForeignKey(SubscriptionRequest, related_name="files", on_delete=models.CASCADE)
|
||
|
created_at = models.DateTimeField(default=timezone.now)
|
||
|
updated_at = models.DateTimeField(auto_now=True)
|