18 lines
395 B
Python
18 lines
395 B
Python
# Generated by Django 3.2.20 on 2024-07-11 15:36
|
|
|
|
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_circle_is_base_circle"),
|
|
]
|
|
|
|
operations = [migrations.RunPython(migrate)]
|