19 lines
430 B
Python
19 lines
430 B
Python
|
|
# Generated by Django 5.2.8 on 2026-02-05 10:45
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('eintritt', '0008_alter_employee_os'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='employee',
|
||
|
|
name='landline',
|
||
|
|
field=models.BooleanField(default=False, verbose_name='Festnetznummer (3CX)'),
|
||
|
|
),
|
||
|
|
]
|