mirror of https://github.com/snachodog/mybuddy.git
19 lines
449 B
Python
19 lines
449 B
Python
# Generated by Django 3.2 on 2021-06-08 03:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0013_auto_20210415_0528'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='child',
|
|
name='slug',
|
|
field=models.SlugField(allow_unicode=True, editable=False, max_length=100, unique=True, verbose_name='Slug'),
|
|
),
|
|
]
|