forgot migrations in last commit

This commit is contained in:
Benni Bärmann 2021-02-09 12:47:14 +01:00
parent 3953149e2f
commit 9348ad4c1e
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 3.1.4 on 2021-02-09 11:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('evapp', '0006_auto_20210209_0939'),
]
operations = [
migrations.AddField(
model_name='employee',
name='remote',
field=models.BooleanField(default=False, verbose_name='Braucht keinen Arbeitsplatz weil Home-Office'),
),
migrations.AlterField(
model_name='employee',
name='desk',
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Wo soll der Arbeitsplatz sein?'),
),
]