Bin
2025-12-17 611bfe34c3c96199eaaf6cf9e41a75892e44e879
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 3.2.19 on 2023-08-10 23:04
 
from django.db import migrations
from tasks.functions import fill_predictions_project
 
def forward(apps, schema_editor):
    fill_predictions_project('0043_auto_20230825')
 
 
def backwards(apps, schema_editor):
    pass
 
 
class Migration(migrations.Migration):
    atomic = False
    dependencies = [
        ('tasks', '0042_auto_20230810_2304'),
    ]
 
    operations = [
        migrations.RunPython(forward, backwards),
    ]