Add uncompressed size field to the image storage and add a backfill script (which is not yet automatically called)
This commit is contained in:
parent
f6d3238611
commit
86dfca2e3e
5 changed files with 59 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
||||
|
|
Reference in a new issue