Feature: Transition all checksums to use SHA256 (#12432)

This commit is contained in:
Trenton H
2026-03-26 11:28:02 -07:00
committed by GitHub
parent 0060b46c8b
commit 9383471fa0
13 changed files with 325 additions and 35 deletions
+2 -2
View File
@@ -216,14 +216,14 @@ class Document(SoftDeleteModel, ModelWithOwner): # type: ignore[django-manager-
checksum = models.CharField(
_("checksum"),
max_length=32,
max_length=64,
editable=False,
help_text=_("The checksum of the original document."),
)
archive_checksum = models.CharField(
_("archive checksum"),
max_length=32,
max_length=64,
editable=False,
blank=True,
null=True,