1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| # Generated by Django 5.1.12 on 2025-10-03 12:10
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| ("projects", "0030_project_search_vector_index"),
| ]
|
| operations = [
| migrations.AlterField(
| model_name="project",
| name="show_ground_truth_first",
| field=models.BooleanField(
| default=False,
| help_text="Onboarding mode (true): show ground truth tasks first in the labeling stream",
| verbose_name="show ground truth first",
| ),
| ),
| ]
|
|