18 lines
384 B
Python
18 lines
384 B
Python
# Generated by Django 3.2.20 on 2024-07-11 13:27
|
|
|
|
from django.db import migrations
|
|
|
|
from vbv_lernwelt.learnpath.creators import create_course_profiles
|
|
|
|
|
|
def migrate(apps, schema_editor):
|
|
create_course_profiles()
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("learnpath", "0017_auto_20240711_1100"),
|
|
]
|
|
|
|
operations = [migrations.RunPython(migrate)]
|