# Generated by Django 3.0 on 2020-10-08 09:00 from django.conf import settings from django.db import migrations, models import django.db.models.deletion import django_cryptography.fields import simple_history.models class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('users', '0024_profile_rd_login'), ('recoverdir', '0021_recoverdirsetting'), ] operations = [ migrations.CreateModel( name='RDContract', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('contract_typ', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('contract_owner', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('license', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('info1', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('info2', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('adresse', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('tel', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('mail', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('agency', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='users.Agency')), ], ), migrations.CreateModel( name='HistoricalRDContract', fields=[ ('id', models.IntegerField(auto_created=True, blank=True, db_index=True, verbose_name='ID')), ('contract_typ', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('contract_owner', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('license', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('info1', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('info2', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('adresse', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('tel', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('mail', django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=500, null=True))), ('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 rd contract', 'ordering': ('-history_date', '-history_id'), 'get_latest_by': 'history_date', }, bases=(simple_history.models.HistoricalChanges, models.Model), ), ]