This commit is contained in:
jonaswinkler
2021-01-01 23:08:49 +01:00
parent c4367818b7
commit 6d554bace1
4 changed files with 108 additions and 18 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.1.4 on 2021-01-01 21:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('documents', '1009_auto_20201216_2005'),
]
operations = [
migrations.AlterField(
model_name='savedviewfilterrule',
name='value',
field=models.CharField(blank=True, max_length=128, null=True),
),
]

View File

@@ -351,7 +351,10 @@ class SavedViewFilterRule(models.Model):
rule_type = models.PositiveIntegerField(choices=RULE_TYPES)
value = models.CharField(max_length=128)
value = models.CharField(
max_length=128,
blank=True,
null=True)
# TODO: why is this in the models file?