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
584 B
23 lines
584 B
# Generated by Django 2.0.7 on 2018-12-10 17:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('config', '0011_config_main_page_video_url'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='config',
|
|
name='SERVICE_OK_URL',
|
|
field=models.URLField(default='#', max_length=126),
|
|
),
|
|
migrations.AddField(
|
|
model_name='config',
|
|
name='SERVICE_VK_URL',
|
|
field=models.URLField(default='#', max_length=126),
|
|
),
|
|
]
|
|
|