medor.www
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

0008_article_subtitle.py
text/x-python

Download raw (465 bytes)

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

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('publish', '0007_auto_20150918_1218'),
    ]

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