22 lines
573 B
Python
22 lines
573 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-10-02 09:51
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
import taggit.managers
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('blog', '0003_post_tags'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='post',
|
|
name='tags',
|
|
field=taggit.managers.TaggableManager(blank=True, help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
|
|
),
|
|
]
|