0011_shift_shiftchef.py 448 B

123456789101112131415161718
  1. # Generated by Django 5.0.2 on 2024-11-09 18:19
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('main', '0010_event_pax'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='shift',
  10. name='shiftchef',
  11. field=models.CharField(choices=[('', 'None'), ('D', 'CVD'), ('T', 'CVT')], default='', max_length=3, null=True),
  12. ),
  13. ]