slug field migrations
This commit is contained in:
parent
bde1f1f3ae
commit
674c0813b8
1 changed files with 24 additions and 0 deletions
24
djangocms_blog/migrations/0016_auto_20160502_1741.py
Normal file
24
djangocms_blog/migrations/0016_auto_20160502_1741.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('djangocms_blog', '0015_auto_20160408_1849'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='blogcategorytranslation',
|
||||
name='slug',
|
||||
field=models.SlugField(max_length=255, verbose_name='slug', blank=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='posttranslation',
|
||||
name='slug',
|
||||
field=models.SlugField(max_length=255, verbose_name='slug', blank=True),
|
||||
),
|
||||
]
|
Loading…
Add table
Reference in a new issue