Skip to content
Snippets Groups Projects
0019_slot_start_optional.py 468 B
Newer Older
  • Learn to ignore specific revisions
  • # Generated by Django 2.2.6 on 2019-10-24 15:24
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('AKModel', '0018_merge_20191023_2227'),
        ]
    
        operations = [
            migrations.AlterField(
                model_name='akslot',
                name='start',
                field=models.DateTimeField(blank=True, help_text='Time and date the slot begins', null=True, verbose_name='Slot Begin'),
            ),
        ]