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
621 B
23 lines
621 B
# Generated by Django 2.0.7 on 2019-07-16 20:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('config', '0014_auto_20190605_1338'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='config',
|
|
name='FREE_LESSONS_VIDEO_PREVIEW_IMG',
|
|
field=models.ImageField(blank=True, null=True, upload_to=''),
|
|
),
|
|
migrations.AddField(
|
|
model_name='config',
|
|
name='FREE_LESSONS_VIDEO_URL',
|
|
field=models.URLField(blank=True, default='', max_length=126),
|
|
),
|
|
]
|
|
|