paperless-ngx/src/documents/migrations/0022_auto_20180527_1653.py
2018-06-17 16:47:38 +01:00

21 lines
591 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.13 on 2018-05-27 16:53
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('documents', '0021_document_storage_type'),
]
operations = [
migrations.AlterField(
model_name='document',
name='storage_type',
field=models.CharField(choices=[('unencrypted', 'Unencrypted'), ('gpg', 'Encrypted with GNU Privacy Guard')], default='unencrypted', editable=False, max_length=11),
),
]