vbv/server/vbv_lernwelt/learnpath/migrations/0019_auto_20240730_0904.py

21 lines
459 B
Python

# Generated by Django 4.2.13 on 2024-07-30 07:04
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",
"0018_alter_courseprofile_options_circle_is_base_circle_and_more",
),
]
operations = [migrations.RunPython(migrate)]