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.
42 lines
1.4 KiB
42 lines
1.4 KiB
# Generated by Django 3.2.4 on 2024-11-22 19:13
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('course', '0003_participant'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='course',
|
|
name='created_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now, verbose_name='Created at'),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='course',
|
|
name='updated_at',
|
|
field=models.DateTimeField(auto_now=True, verbose_name='Updated At'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='lesson',
|
|
name='created_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now, verbose_name='Created at'),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='lesson',
|
|
name='updated_at',
|
|
field=models.DateTimeField(auto_now=True, verbose_name='Updated At'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='lessoncompletion',
|
|
name='created_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now, verbose_name='Created at'),
|
|
preserve_default=False,
|
|
),
|
|
]
|