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:
Michael Shamoon
2023-01-24 09:56:02 -08:00
committed by Trenton H
parent 3c2df48a1a
commit 99c2442b28
3 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ def get_schema():
id=NUMERIC(stored=True, unique=True),
title=TEXT(sortable=True),
content=TEXT(),
asn=NUMERIC(sortable=True),
asn=NUMERIC(sortable=True, signed=False),
correspondent=TEXT(sortable=True),
correspondent_id=NUMERIC(),
has_correspondent=BOOLEAN(),