Skip to content

Commit

Permalink
(ISA-552) Increase save state allowed size
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Groombridge committed Mar 19, 2024
1 parent 599d5d3 commit d488937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/catalogue/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def __str__(self):
@python_2_unicode_compatible
class SaveState(models.Model):
id = models.UUIDField(primary_key=True, default=uuid4, editable=False)
hashstate = models.CharField(max_length = 5000)
hashstate = models.CharField(max_length = 8000)
description = models.TextField(blank=True, null=True)
time_created = models.DateTimeField(default=datetime.now())

Expand Down

0 comments on commit d488937

Please sign in to comment.