20 lines
468 B
Python
20 lines
468 B
Python
# Generated by Django 4.1.1 on 2022-10-12 14:56
|
|
|
|
import autoslug.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0011_remove_orders_students_orders_conracts'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='students',
|
|
name='slug',
|
|
field=autoslug.fields.AutoSlugField(editable=False, populate_from='title', unique=True),
|
|
),
|
|
]
|