Bin
2025-12-17 1442f92732d7c5311a627a7ba3aaa0bb8ffc539f
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',
            ),
        ),
    ]