Bin
2025-12-17 dcf780a91c16b6be28635b6e2e0e702060ee19f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 3.1.4 on 2021-03-09 13:04
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ('projects', '0006_auto_20210308_1559'),
    ]
 
    operations = [
        migrations.RenameField(
            model_name='project',
            old_name='show_ground_truths_first',
            new_name='show_ground_truth_first'
        ),
        migrations.AlterField(
            model_name='project',
            name='show_ground_truth_first',
            field=models.BooleanField(default=True, verbose_name='show ground truth first'),
        ),
    ]