19 lines
445 B
Python
19 lines
445 B
Python
# Generated by Django 3.1.4 on 2021-03-30 08:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('evapp', '0011_auto_20210329_1254'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='employee',
|
|
name='bvg',
|
|
field=models.BooleanField(default=True, verbose_name='Bekommt eine BVG-Karte, weil in Berlin tätig'),
|
|
),
|
|
]
|