19 lines
515 B
Python
19 lines
515 B
Python
|
# Generated by Django 3.1.4 on 2021-05-04 12:24
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('evapp', '0016_auto_20210504_1040'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='employee',
|
||
|
name='os',
|
||
|
field=models.CharField(choices=[('UBU', 'Ubuntu (Standard)'), ('WIN', 'Windows (bitte Begründung angeben)')], default='UBU', max_length=3, verbose_name='Betriebssystem'),
|
||
|
),
|
||
|
]
|