31 lines
872 B
Python
31 lines
872 B
Python
# Generated by Django 3.2.20 on 2023-12-21 13:11
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("course", "0005_course_enable_circle_documents"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="course",
|
|
name="circle_contact_type",
|
|
field=models.CharField(
|
|
choices=[("EXPERT", "EXPERT"), ("LEARNING_MENTOR", "LEARNING_MENTOR")],
|
|
default="EXPERT",
|
|
max_length=50,
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="coursesessionuser",
|
|
name="role",
|
|
field=models.CharField(
|
|
choices=[("MEMBER", "Teilnehmer"), ("EXPERT", "Experte/Trainer")],
|
|
default="MEMBER",
|
|
max_length=255,
|
|
),
|
|
),
|
|
]
|