mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 07:15:07 +01:00
Use 32bit integer for asn, unsigned Whoosh NUMERIC field
Co-Authored-By: Trenton H <797416+stumpylog@users.noreply.github.com>
This commit is contained in:
parent
3c2df48a1a
commit
99c2442b28
3 changed files with 4 additions and 4 deletions
|
|
@ -236,7 +236,7 @@ class Document(models.Model):
|
|||
unique=True,
|
||||
db_index=True,
|
||||
validators=[
|
||||
MaxValueValidator(2147483647),
|
||||
MaxValueValidator(0xFF_FF_FF_FF),
|
||||
MinValueValidator(0),
|
||||
],
|
||||
help_text=_(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue