Bin
2025-12-16 7423b0c6e1959f30a7e8e453e953310f32ce13c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated migration for adding allow_skip field to Task model
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ('tasks', '0059_task_completion_id_updated_at_idx_async'),
    ]
 
    operations = [
        migrations.AddField(
            model_name='task',
            name='allow_skip',
            field=models.BooleanField(
                default=True,
                null=True,
                help_text='Whether this task can be skipped. Set to False to make task unskippable.',
                verbose_name='allow_skip',
            ),
        ),
    ]