mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	Merge branch 'workflow-improvements' into dev
This commit is contained in:
		@@ -1,6 +1,4 @@
 | 
				
			|||||||
# -*- coding: utf-8 -*-
 | 
					# Generated by Django 2.0.7 on 2018-07-12 09:52
 | 
				
			||||||
# Generated by Django 1.11.10 on 2018-02-04 13:07
 | 
					 | 
				
			||||||
from __future__ import unicode_literals
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
from django.db import migrations, models
 | 
					from django.db import migrations, models
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -12,23 +10,19 @@ class Migration(migrations.Migration):
 | 
				
			|||||||
    ]
 | 
					    ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    operations = [
 | 
					    operations = [
 | 
				
			||||||
 | 
					 | 
				
			||||||
        migrations.AddField(
 | 
					        migrations.AddField(
 | 
				
			||||||
            model_name='document',
 | 
					            model_name='document',
 | 
				
			||||||
            name='archive_serial_number',
 | 
					            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(
 | 
					        migrations.AddField(
 | 
				
			||||||
            model_name='tag',
 | 
					            model_name='tag',
 | 
				
			||||||
            name='is_archived_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.'),
 | 
				
			||||||
        ),
 | 
					        ),
 | 
				
			||||||
 | 
					 | 
				
			||||||
    ]
 | 
					    ]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user