20 lines
499 B
Python
20 lines
499 B
Python
# Generated by Django 3.2.13 on 2022-11-07 15:51
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("learnpath", "0008_alter_learningcontent_contents"),
|
|
("course", "0003_alter_coursepage_course"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="coursesessionuser",
|
|
name="expert",
|
|
field=models.ManyToManyField(related_name="expert", to="learnpath.Circle"),
|
|
),
|
|
]
|