19 lines
560 B
Python
19 lines
560 B
Python
# Generated by Django 3.1.4 on 2021-11-10 08:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('evapp', '0002_auto_20210914_1055'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='employee',
|
|
name='department',
|
|
field=models.CharField(choices=[('PROG', 'Programme'), ('SOFT', 'Softwareentwicklung'), ('CENT', 'Central'), ('KOMEV', 'Kommunikation und Events'), ('VOR', 'Vorstand')], max_length=5, verbose_name='Bereich'),
|
|
),
|
|
]
|