25 lines
556 B
Python
25 lines
556 B
Python
# Generated by Django 3.2.13 on 2022-12-02 09:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("course", "0005_alter_coursesessionuser_expert"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="course",
|
|
name="slug",
|
|
field=models.SlugField(
|
|
allow_unicode=True,
|
|
blank=True,
|
|
max_length=255,
|
|
unique=True,
|
|
verbose_name="Slug",
|
|
),
|
|
),
|
|
]
|