mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-26 22:49:01 -06:00
24 lines
620 B
Python
24 lines
620 B
Python
# Generated by Django 5.2.7 on 2026-01-14 17:45
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("documents", "0005_workflowtrigger_filter_has_any_correspondents_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="document",
|
|
name="checksum",
|
|
field=models.CharField(
|
|
editable=False,
|
|
max_length=32,
|
|
verbose_name="checksum",
|
|
help_text="The checksum of the original document.",
|
|
),
|
|
),
|
|
]
|