chenzhaoyang
2025-12-17 063da0bf961e1d35e25dc107f883f7492f4c5a7c
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),
    ]