mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-21 10:29:29 -05:00
22 lines
508 B
Python
22 lines
508 B
Python
# Generated by Django 4.1.7 on 2023-03-22 17:51
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("paperless_mail", "0019_mailrule_filter_to"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="mailaccount",
|
|
name="is_token",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
verbose_name="Is token authentication",
|
|
),
|
|
),
|
|
]
|