Add missing migration for savedviewfilterrule

Change introduced in d7cefabe98398f3916a5db6c33027c2d77d12b59.
This commit is contained in:
Felix Eckhofer 2022-03-17 13:15:00 +01:00
parent 24e02a6c5f
commit a1d1fb962b
No known key found for this signature in database
GPG Key ID: B4543DCDE458BF73

View File

@ -0,0 +1,45 @@
# Generated by Django 3.2.12 on 2022-03-17 11:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("documents", "1016_auto_20210317_1351"),
]
operations = [
migrations.AlterField(
model_name="savedviewfilterrule",
name="rule_type",
field=models.PositiveIntegerField(
choices=[
(0, "title contains"),
(1, "content contains"),
(2, "ASN is"),
(3, "correspondent is"),
(4, "document type is"),
(5, "is in inbox"),
(6, "has tag"),
(7, "has any tag"),
(8, "created before"),
(9, "created after"),
(10, "created year is"),
(11, "created month is"),
(12, "created day is"),
(13, "added before"),
(14, "added after"),
(15, "modified before"),
(16, "modified after"),
(17, "does not have tag"),
(18, "does not have ASN"),
(19, "title or content contains"),
(20, "fulltext query"),
(21, "more like this"),
(22, "has tags in"),
],
verbose_name="rule type",
),
),
]