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 462dffe25f
commit 624675f7c9
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# Generated by Django 4.1.4 on 2023-01-24 05:09
# Generated by Django 4.1.4 on 2023-01-24 17:56
import django.core.validators
from django.db import migrations, models
@@ -21,7 +21,7 @@ class Migration(migrations.Migration):
null=True,
unique=True,
validators=[
django.core.validators.MaxValueValidator(2147483647),
django.core.validators.MaxValueValidator(4294967295),
django.core.validators.MinValueValidator(0),
],
verbose_name="archive serial number",