mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-27 13:18:18 -05:00
31 lines
916 B
Python
31 lines
916 B
Python
# Generated by Django 5.1.8 on 2025-04-30 02:38
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("documents", "1068_alter_document_created"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="paperlesstask",
|
|
name="task_name",
|
|
field=models.CharField(
|
|
choices=[
|
|
("consume_file", "Consume File"),
|
|
("train_classifier", "Train Classifier"),
|
|
("check_sanity", "Check Sanity"),
|
|
("index_optimize", "Index Optimize"),
|
|
("llmindex_update", "LLM Index Update"),
|
|
],
|
|
help_text="Name of the task that was run",
|
|
max_length=255,
|
|
null=True,
|
|
verbose_name="Task Name",
|
|
),
|
|
),
|
|
]
|