Bin
2025-12-16 971a2a12c03b74dd2d7d668b9dbc599f5131bcaf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 4.2.16 on 2024-11-04 10:37
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ('tasks', '0050_alter_predictionmeta_failed_prediction_and_more'),
    ]
 
    operations = [
        migrations.AddField(
            model_name='tasklock',
            name='created_at',
            field=models.DateTimeField(blank=True, default=None, help_text='Creation time', null=True, verbose_name='created_at'),
        ),
    ]