From 740237a8fa087ab13da71f1969d9f5e38d839c77 Mon Sep 17 00:00:00 2001
From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com>
Date: Wed, 17 Mar 2021 22:33:00 +0100
Subject: [PATCH] add migration

---
 .../migrations/1015_auto_20210317_1351.py     | 23 +++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 src/documents/migrations/1015_auto_20210317_1351.py

diff --git a/src/documents/migrations/1015_auto_20210317_1351.py b/src/documents/migrations/1015_auto_20210317_1351.py
new file mode 100644
index 000000000..b6dca444c
--- /dev/null
+++ b/src/documents/migrations/1015_auto_20210317_1351.py
@@ -0,0 +1,23 @@
+# Generated by Django 3.1.7 on 2021-03-17 12:51
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('documents', '1014_auto_20210228_1614'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='savedview',
+            name='sort_field',
+            field=models.CharField(blank=True, max_length=128, null=True, verbose_name='sort field'),
+        ),
+        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')], verbose_name='rule type'),
+        ),
+    ]