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
513 B
23 lines
513 B
2 years ago
|
# Generated by Django 4.1.4 on 2022-12-16 07:24
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('cms', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='article',
|
||
|
name='title',
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='article',
|
||
|
name='link',
|
||
|
field=models.CharField(default='https://zakonvremeni.ru/news/', max_length=100),
|
||
|
),
|
||
|
]
|