mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-03 11:29:28 -05:00
33 lines
982 B
Python
33 lines
982 B
Python
# Generated by Django 4.0.4 on 2022-04-14 22:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("paperless_mail", "0009_alter_mailrule_action_alter_mailrule_folder"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="mailrule",
|
|
name="consumption_scope",
|
|
field=models.PositiveIntegerField(
|
|
choices=[
|
|
(1, "Only process attachments."),
|
|
(
|
|
2,
|
|
"Process full Mail (with embedded attachments in file) as .eml",
|
|
),
|
|
(
|
|
3,
|
|
"Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents",
|
|
),
|
|
],
|
|
default=1,
|
|
verbose_name="consumption scope",
|
|
),
|
|
),
|
|
]
|