Bin
2025-12-17 1d710f844b65d9bfdf986a71a3b924cd70598a41
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('0042_auto_20230810_2304')
 
 
def backwards(apps, schema_editor):
    pass
 
 
class Migration(migrations.Migration):
    atomic = False
    dependencies = [
        ('tasks', '0041_prediction_project'),
    ]
 
    operations = [
        migrations.RunPython(forward, backwards),
    ]