medor.www
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

0025_auto_20161031_1509.py
text/x-python

Download raw (449 bytes)

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

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('publish', '0024_articlemembership_slug'),
    ]

    operations = [
        migrations.AlterField(
            model_name='articlemembership',
            name='article',
            field=models.ForeignKey(blank=True, to='publish.Article', null=True),
        ),
    ]