72 lines
3.6 KiB
Python
72 lines
3.6 KiB
Python
# Generated by Django 3.0 on 2020-10-05 15:27
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import django.utils.timezone
|
|
import django_cryptography.fields
|
|
import django_encrypted_filefield.fields
|
|
import recoverdir.models
|
|
import simple_history.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0023_auto_20201002_2036'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('recoverdir', '0008_auto_20201005_1512'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Documents',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('area', models.IntegerField(default=0)),
|
|
('document_desc', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))),
|
|
('document_name', django_cryptography.fields.encrypt(models.CharField(default='', max_length=500))),
|
|
('document_date', django_cryptography.fields.encrypt(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)),
|
|
('agency', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='users.Agency')),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='HistoricalDocuments',
|
|
fields=[
|
|
('id', models.IntegerField(auto_created=True, blank=True, db_index=True, verbose_name='ID')),
|
|
('area', models.IntegerField(default=0)),
|
|
('document_desc', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))),
|
|
('document_name', django_cryptography.fields.encrypt(models.CharField(default='', max_length=500))),
|
|
('document_date', django_cryptography.fields.encrypt(models.DateField(blank=True, default=django.utils.timezone.now, null=True))),
|
|
('document', models.TextField(blank=True, max_length=100)),
|
|
('history_id', models.AutoField(primary_key=True, serialize=False)),
|
|
('history_date', models.DateTimeField()),
|
|
('history_change_reason', models.CharField(max_length=100, null=True)),
|
|
('history_type', models.CharField(choices=[('+', 'Created'), ('~', 'Changed'), ('-', 'Deleted')], max_length=1)),
|
|
('agency', models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='users.Agency')),
|
|
('history_user', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
options={
|
|
'verbose_name': 'historical documents',
|
|
'ordering': ('-history_date', '-history_id'),
|
|
'get_latest_by': 'history_date',
|
|
},
|
|
bases=(simple_history.models.HistoricalChanges, models.Model),
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='historicalarea1_documents',
|
|
name='agency',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='historicalarea1_documents',
|
|
name='history_user',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Area1_Documents',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='HistoricalArea1_Documents',
|
|
),
|
|
]
|