Browse Source

Increase the allowed max length for uploaded dataset filepath

pull/1500/head
Yosua Michael M 3 years ago
parent
commit
d56d742d08
1 changed files with 1 additions and 1 deletions
  1. 2
      backend/api/models.py

2
backend/api/models.py

@ -147,7 +147,7 @@ class Label(models.Model):
class Example(models.Model):
meta = models.JSONField(default=dict)
filename = models.FileField(default='.')
filename = models.FileField(default='.', max_length=1024)
project = models.ForeignKey(
to=Project,
on_delete=models.CASCADE,

Loading…
Cancel
Save