Forked from
KIF / AKPlanning
443 commits behind the upstream repository.
-
Benjamin Hättasch authored
Verbose name of AKSlot.fixed was updated in a previous commit, this migration reflects this change
Benjamin Hättasch authoredVerbose name of AKSlot.fixed was updated in a previous commit, this migration reflects this change
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
0043_akslot_fixed_improve_verbose_name.py 477 B
# Generated by Django 3.1.5 on 2021-01-29 15:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('AKModel', '0042_akslot_fixed'),
]
operations = [
migrations.AlterField(
model_name='akslot',
name='fixed',
field=models.BooleanField(default=False, help_text='Length and time of this AK should not be changed', verbose_name='Scheduling fixed'),
),
]