2018-07-12 11:54:03 +02:00
# Generated by Django 2.0.7 on 2018-07-12 09:52
2018-07-06 13:25:02 +02:00
from django . db import migrations , models
class Migration ( migrations . Migration ) :
dependencies = [
2020-10-28 11:45:11 +01:00
( ' documents ' , ' 0022_auto_20181007_1420 ' ) ,
2018-07-06 13:25:02 +02:00
]
operations = [
migrations . AddField (
model_name = ' document ' ,
name = ' archive_serial_number ' ,
2018-07-12 11:54:03 +02:00
field = models . IntegerField ( blank = True , db_index = True , help_text = ' The position of this document in your physical document archive. ' , null = True , unique = True ) ,
2018-07-06 13:25:02 +02:00
) ,
migrations . AddField (
model_name = ' tag ' ,
2018-07-12 11:54:03 +02:00
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. ' ) ,
2018-07-06 13:25:02 +02:00
) ,
]