Merge branch 'workflow-improvements' into dev

This commit is contained in:
Jonas Winkler 2018-07-15 13:42:00 +02:00
commit 033ab72475

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2018-02-04 13:07
from __future__ import unicode_literals
# Generated by Django 2.0.7 on 2018-07-12 09:52
from django.db import migrations, models
@ -12,23 +10,19 @@ class Migration(migrations.Migration):
]
operations = [
migrations.AddField(
model_name='document',
name='archive_serial_number',
field=models.IntegerField(unique=True, blank=True, null=True, db_index=True),
field=models.IntegerField(blank=True, db_index=True, help_text='The position of this document in your physical document archive.', null=True, unique=True),
),
migrations.AddField(
model_name='tag',
name='is_inbox_tag',
field=models.BooleanField(default=False),
),
migrations.AddField(
model_name='tag',
name='is_archived_tag',
field=models.BooleanField(default=False),
field=models.BooleanField(default=False, help_text='Marks this tag as an archive tag: All documents tagged with archive tags will never be modified automatically (i.e., modifying tags by matching rules)'),
),
migrations.AddField(
model_name='tag',
name='is_inbox_tag',
field=models.BooleanField(default=False, help_text='Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags.'),
),
]