22 lines
565 B
Python
22 lines
565 B
Python
|
# Generated by Django 5.1 on 2024-08-13 11:17
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('cmsMain', '0002_alter_site_options_page_title_url'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='site',
|
||
|
options={'verbose_name': 'Сайт', 'verbose_name_plural': 'Сайты'},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='url',
|
||
|
options={'verbose_name': 'Ссылка', 'verbose_name_plural': 'Ссылки'},
|
||
|
),
|
||
|
]
|