Add uncompressed size field to the image storage and add a backfill script (which is not yet automatically called)

This commit is contained in:
Joseph Schorr 2014-09-23 14:01:27 -04:00
parent f6d3238611
commit 86dfca2e3e
5 changed files with 59 additions and 1 deletions

View file

@ -265,6 +265,7 @@ class ImageStorage(BaseModel):
comment = TextField(null=True)
command = TextField(null=True)
image_size = BigIntegerField(null=True)
uncompressed_size = BigIntegerField(null=True)
uploading = BooleanField(default=True, null=True)