medor.www
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

0003_article_slug.py
text/x-python

Download raw (461 bytes)

# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('publish', '0002_auto_20150903_1203'),
    ]

    operations = [
        migrations.AddField(
            model_name='article',
            name='slug',
            field=models.SlugField(default='', max_length=1024, blank=True),
            preserve_default=False,
        ),
    ]