Skip to content

Commit

Permalink
removing comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehewitt15 committed Oct 10, 2023
1 parent e00cc1a commit 1156da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/oceandbs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class File(models.Model):
cid = models.CharField(max_length=2048, null=True)
quote = models.ForeignKey(Quote, null=True, on_delete=models.SET_NULL, related_name="files")
length = models.BigIntegerField(default=0)
content_type = models.CharField(max_length=255, null=True, blank=True) # or whatever max_length suits you
content_type = models.CharField(max_length=255, null=True, blank=True)


def __str__(self):
Expand Down

0 comments on commit 1156da4

Please sign in to comment.