Fixes the 0023 migration to include the new help text and verbose name

This commit is contained in:
Trenton Holmes 2023-12-03 19:09:02 -08:00
parent f27f25aa03
commit 62c417cd51

View File

@ -1,4 +1,4 @@
# Generated by Django 4.2.7 on 2023-11-28 17:47
# Generated by Django 4.2.7 on 2023-12-04 03:06
from django.db import migrations
from django.db import models
@ -26,4 +26,15 @@ class Migration(migrations.Migration):
verbose_name="filter attachment filename exclusive",
),
),
migrations.AlterField(
model_name="mailrule",
name="filter_attachment_filename_include",
field=models.CharField(
blank=True,
help_text="Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.",
max_length=256,
null=True,
verbose_name="filter attachment filename inclusive",
),
),
]