re-ordered BlobUploading fields
This commit is contained in:
parent
3f722f880e
commit
e6c99bb471
1 changed files with 3 additions and 3 deletions
|
@ -1030,10 +1030,10 @@ class BlobUploading(BaseModel):
|
||||||
repository = ForeignKeyField(Repository, index=True)
|
repository = ForeignKeyField(Repository, index=True)
|
||||||
location = ForeignKeyField(BlobPlacementLocation)
|
location = ForeignKeyField(BlobPlacementLocation)
|
||||||
byte_count = IntegerField(default=0)
|
byte_count = IntegerField(default=0)
|
||||||
sha_state = ResumableSHA256Field(null=True, default=resumablehashlib.sha256)
|
|
||||||
storage_metadata = JSONField(null=True, default={})
|
|
||||||
chunk_count = IntegerField(default=0)
|
|
||||||
uncompressed_byte_count = IntegerField(null=True)
|
uncompressed_byte_count = IntegerField(null=True)
|
||||||
|
chunk_count = IntegerField(default=0)
|
||||||
|
storage_metadata = JSONField(null=True, default={})
|
||||||
|
sha_state = ResumableSHA256Field(null=True, default=resumablehashlib.sha256)
|
||||||
piece_sha_state = ResumableSHA1Field(null=True)
|
piece_sha_state = ResumableSHA1Field(null=True)
|
||||||
piece_hashes = Base64BinaryField(null=True)
|
piece_hashes = Base64BinaryField(null=True)
|
||||||
|
|
||||||
|
|
Reference in a new issue