19 lines
604 B
Python
19 lines
604 B
Python
# Generated by Django 4.2.7 on 2023-12-06 12:42
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ServicesApp', '0006_alter_blockpluginpresentation_options'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='section',
|
|
name='page_scheme',
|
|
field=models.CharField(choices=[('projecting', 'Проектирование'), ('services', 'Разработка'), ('plugin', 'Плагин')], default='projecting', max_length=100, verbose_name='Схема страницы'),
|
|
),
|
|
]
|