1
0
Fork 0
mirror of synced 2024-06-02 10:34:43 +12:00

add migration

This commit is contained in:
Nick Sweeting 2021-02-28 22:55:12 -05:00
parent 9fc9f52cfb
commit 0036e9cce2

View file

@ -0,0 +1,18 @@
# Generated by Django 3.1.3 on 2021-02-19 02:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0016_auto_20210218_1204'),
]
operations = [
migrations.AlterField(
model_name='tag',
name='slug',
field=models.SlugField(blank=True, max_length=100, unique=True, verbose_name='slug'),
),
]