view news/migrations/0004_auto_20151120_2228.py @ 1176:0436a2ff6ff1

Fix MP3 comp link
author Brian Neal <bgneal@gmail.com>
date Sat, 16 Feb 2019 14:41:26 -0600
parents e2c3d7ecfa30
children
line wrap: on
line source
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('news', '0003_auto_20151117_2032'),
    ]

    operations = [
        migrations.AlterField(
            model_name='pendingstory',
            name='long_text',
            field=models.TextField(default=b'', blank=True),
            preserve_default=True,
        ),
        migrations.AlterField(
            model_name='story',
            name='long_text',
            field=models.TextField(default=b'', blank=True),
            preserve_default=True,
        ),
    ]