mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-17 10:13:56 -05:00
23 lines
626 B
Python
23 lines
626 B
Python
# Generated by Django 4.2.7 on 2023-11-30 14:29
|
|
|
|
import multiselectfield.db.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("documents", "1040_customfield_customfieldinstance_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="consumptiontemplate",
|
|
name="sources",
|
|
field=multiselectfield.db.fields.MultiSelectField(
|
|
choices=[(1, "Consume Folder"), (2, "Api Upload"), (3, "Mail Fetch")],
|
|
default="1,2,3",
|
|
max_length=5,
|
|
),
|
|
),
|
|
]
|