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.
19 lines
485 B
19 lines
485 B
# Generated by Django 3.2.4 on 2025-09-16 14:50
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('course', '0006_participant_is_active'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='course',
|
|
name='thumbnail',
|
|
field=models.ImageField(default='1', upload_to='courses/thumbnails/', verbose_name='Thumbnail'),
|
|
preserve_default=False,
|
|
),
|
|
]
|