33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
# Generated by Django 3.0 on 2020-10-06 20:18
|
|
|
|
from django.db import migrations, models
|
|
import django_cryptography.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recoverdir', '0017_historicalpersonal_personal'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='historicalpersonal',
|
|
name='vollmacht_doc',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='personal',
|
|
name='vollmacht_doc',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='historicalpersonal',
|
|
name='inorex',
|
|
field=django_cryptography.fields.encrypt(models.CharField(blank=True, choices=[('ex', 'Intern'), ('in', 'Extern')], default=1, max_length=500, null=True)),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='personal',
|
|
name='inorex',
|
|
field=django_cryptography.fields.encrypt(models.CharField(blank=True, choices=[('ex', 'Intern'), ('in', 'Extern')], default=1, max_length=500, null=True)),
|
|
),
|
|
]
|