digitaleagentur/recoverdir/migrations/0005_area1_documents.py

26 lines
938 B
Python

# Generated by Django 3.0 on 2020-10-05 10:44
from django.db import migrations, models
import django.utils.timezone
import django_encrypted_filefield.fields
import recoverdir.models
class Migration(migrations.Migration):
dependencies = [
('recoverdir', '0004_handlungsleitfaden_rdcontact_rdtrustperson'),
]
operations = [
migrations.CreateModel(
name='Area1_Documents',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('document_desc', models.CharField(blank=True, default='', max_length=500, null=True)),
('document_date', models.DateField(blank=True, default=django.utils.timezone.now, null=True)),
('document', django_encrypted_filefield.fields.EncryptedFileField(blank=True, upload_to=recoverdir.models.rd_path_agency)),
],
),
]