19 lines
428 B
Python
19 lines
428 B
Python
|
# Generated by Django 3.1.4 on 2021-02-08 11:19
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('evapp', '0003_auto_20210114_1357'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='employee',
|
||
|
name='intern',
|
||
|
field=models.BooleanField(default=True, verbose_name='Interne_r Mitarbeiter_in?'),
|
||
|
),
|
||
|
]
|