You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
741 B
23 lines
741 B
# Generated by Django 3.2.7 on 2025-01-13 13:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('course', '0005_participant_unread_messages_count'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='lesson',
|
|
name='content_type',
|
|
field=models.CharField(choices=[('youtube_link', 'Youtube Link'), ('video_file', 'Video File'), ('audio_file', 'Audio File')], max_length=50, verbose_name='Content Type'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='lesson',
|
|
name='video_link',
|
|
field=models.CharField(blank=True, max_length=500, null=True, verbose_name='Link'),
|
|
),
|
|
]
|