mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-01 11:19:32 -05:00
31 lines
917 B
Python
31 lines
917 B
Python
# Generated by Django 4.1.4 on 2023-01-24 17:56
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("documents", "1028_remove_paperlesstask_task_args_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="document",
|
|
name="archive_serial_number",
|
|
field=models.PositiveIntegerField(
|
|
blank=True,
|
|
db_index=True,
|
|
help_text="The position of this document in your physical document archive.",
|
|
null=True,
|
|
unique=True,
|
|
validators=[
|
|
django.core.validators.MaxValueValidator(4294967295),
|
|
django.core.validators.MinValueValidator(0),
|
|
],
|
|
verbose_name="archive serial number",
|
|
),
|
|
),
|
|
]
|