18 lines
392 B
Python
18 lines
392 B
Python
# Generated by Django 4.2.13 on 2024-07-30 07:05
|
|
|
|
from django.db import migrations
|
|
|
|
from vbv_lernwelt.learnpath.creators import assign_circles_to_profiles
|
|
|
|
|
|
def migrate(apps, schema_editor):
|
|
assign_circles_to_profiles()
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("learnpath", "0019_auto_20240730_0904"),
|
|
]
|
|
|
|
operations = [migrations.RunPython(migrate)]
|