feat: Bump django, update migration and change cmd to use JSONField

This commit is contained in:
Cristian 2020-11-27 16:23:27 -05:00
parent f61e6a74bb
commit 4b3f72202b
5 changed files with 8 additions and 8 deletions

View file

@ -160,7 +160,7 @@ class Snapshot(models.Model):
class ArchiveResult(models.Model):
snapshot = models.ForeignKey(Snapshot, on_delete=models.CASCADE)
cmd = models.CharField(max_length=500)
cmd = models.JSONField()
pwd = models.CharField(max_length=256)
cmd_version = models.CharField(max_length=32)
output = models.CharField(max_length=512)