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'),
| ),
| ]
|
|