25 lines
736 B
Python
25 lines
736 B
Python
# Generated by Django 5.1.8 on 2025-04-28 12:07
|
|
|
|
import django_extensions.db.fields
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("blog", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="post",
|
|
name="slug",
|
|
field=django_extensions.db.fields.AutoSlugField(
|
|
allow_unicode=True, blank=True, editable=False, populate_from="title", unique=True
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="post",
|
|
name="title",
|
|
field=models.CharField(help_text="post title", max_length=128, unique=True, verbose_name="title"),
|
|
),
|
|
]
|