debug4
All checks were successful
Deploy to Server / deploy (push) Successful in 21s

This commit is contained in:
jeremygan2021
2026-03-23 00:15:21 +08:00
parent ed6905a22e
commit f1f1e0df5a
3 changed files with 36 additions and 1 deletions

View File

@@ -297,6 +297,7 @@ class ProjectFile(models.Model):
file = models.FileField(upload_to='competitions/projects/files/', verbose_name="文件", null=True, blank=True)
file_url = models.TextField(verbose_name="文件链接", null=True, blank=True, help_text="OSS URL或外部链接")
file_size = models.BigIntegerField(verbose_name="文件大小(字节)", null=True, blank=True)
name = models.CharField(max_length=100, verbose_name="文件名称", blank=True)