Change default storage_type to unencrypted

This commit is contained in:
Daniel Quinn
2018-05-27 23:17:21 +01:00
parent 52b0249d71
commit 5643d89270
2 changed files with 21 additions and 1 deletions

View File

@@ -239,7 +239,7 @@ class Document(models.Model):
storage_type = models.CharField(
max_length=11,
choices=STORAGE_TYPES,
default=STORAGE_TYPE_GPG,
default=STORAGE_TYPE_UNENCRYPTED,
editable=False
)