chenzhaoyang
2025-12-17 d3e5a4b7658ece4f845bbc0c4f95acf3fbdf8a61
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',
            ),
        ),
    ]