mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-23 06:56:31 +01:00
Enhancement: support negative offset in scheduled workflows (#9746)
This commit is contained in:
parent
73f0f1212d
commit
344cc70cd5
7 changed files with 227 additions and 97 deletions
|
|
@ -0,0 +1,22 @@
|
|||
# Generated by Django 5.1.7 on 2025-04-15 19:18
|
||||
|
||||
from django.db import migrations
|
||||
from django.db import models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("documents", "1065_workflowaction_assign_custom_fields_values"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="workflowtrigger",
|
||||
name="schedule_offset_days",
|
||||
field=models.IntegerField(
|
||||
default=0,
|
||||
help_text="The number of days to offset the schedule trigger by.",
|
||||
verbose_name="schedule offset days",
|
||||
),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue