blob: f3b6747c8fdf899c22fdffaf4a03275e7a5fc410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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/'),
),
]
|