From 960340a5dbf80255c7c56c65bc12342e2a229a65 Mon Sep 17 00:00:00 2001 From: Jonas Winkler Date: Thu, 12 Jul 2018 11:54:03 +0200 Subject: [PATCH] updated migrations --- .../migrations/0022_workflow_improvements.py | 22 +++++++------------ 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/src/documents/migrations/0022_workflow_improvements.py b/src/documents/migrations/0022_workflow_improvements.py index 534cb78e7..cdaf4504c 100755 --- a/src/documents/migrations/0022_workflow_improvements.py +++ b/src/documents/migrations/0022_workflow_improvements.py @@ -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.'), ), - ]