From 9bb7b7bdfaf4130e1fa8e5f9baf93e9f977f7807 Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Wed, 29 Jul 2020 23:58:25 +0200 Subject: upload signed documents --- client/migrations/0026_document_signed_doc.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 client/migrations/0026_document_signed_doc.py (limited to 'client/migrations/0026_document_signed_doc.py') diff --git a/client/migrations/0026_document_signed_doc.py b/client/migrations/0026_document_signed_doc.py new file mode 100644 index 0000000..f3b6747 --- /dev/null +++ b/client/migrations/0026_document_signed_doc.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-07-29 19:58 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('client', '0025_documenttype_custom_group'), + ] + + operations = [ + migrations.AddField( + model_name='document', + name='signed_doc', + field=models.FileField(default=None, null=True, upload_to='documents/'), + ), + ] -- cgit v1.2.1