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.
25 lines
653 B
25 lines
653 B
# Generated by Django 2.0.1 on 2018-01-29 14:36
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('course', '0007_auto_20180129_1433'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='lesson',
|
|
name='created_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='lesson',
|
|
name='update_at',
|
|
field=models.DateTimeField(auto_now=True),
|
|
),
|
|
]
|
|
|