# Generated by Django 3.1.4 on 2021-02-08 13:45

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('evapp', '0004_employee_intern'),
    ]

    operations = [
        migrations.AddField(
            model_name='employee',
            name='vendor',
            field=models.CharField(choices=[('STANDARD', 'Dell Latitude'), ('LENOVO', 'Lenovo Thinkpad'), ('MAC', 'Mac (nur in Ausnahmefällen)')], default='STANDARD', max_length=8),
        ),
    ]