Bin
2025-12-17 bc6aa38242b0a7dea4b18bc90e2d78740436a58b
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-09 22:09
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ("tasks", "0057_annotation_proj_result_octlen_idx_async"),
    ]
 
    operations = [
        migrations.AddField(
            model_name="task",
            name="precomputed_agreement",
            field=models.FloatField(
                help_text="Average agreement score for the task",
                null=True,
                verbose_name="precomputed_agreement",
            ),
        ),
    ]