blob: f294343f2a45aa3195562bd63415dfcc32799db4 [file] [log] [blame]
from django.db import models
class UserFiles(models.Model):
"""Base model that should be implemented in Airavata Django Portal."""
username = models.CharField(max_length=64)
file_path = models.TextField()
file_dpu = models.CharField(max_length=255, primary_key=True)
# resource id is either the (legacy) storage resource id that has an
# associated storage preference in the Gateway Resource Profile, or a
# resource id to a resource defined in MFT
file_resource_id = models.CharField(max_length=255)
class Meta:
indexes = [
# FIXME: ideally we would include file_path in the index to make
# lookups faster, but Django/MariaDB don't support key length on a
# TEXT column which is required to create an index
models.Index(fields=['username'], name='userfiles_username_idx')
]