19 lines
450 B
Python
19 lines
450 B
Python
# Generated by Django 3.1.4 on 2021-09-09 09:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('evapp', '0024_auto_20210526_1259'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='employee',
|
|
name='remote',
|
|
field=models.BooleanField(default=True, verbose_name='Braucht Arbeitsplatz in der Geschäftsstelle?'),
|
|
),
|
|
]
|