summaryrefslogtreecommitdiff
path: root/patchwork/migrations/0027_remove_series_ordering.py
blob: ab725cfcf94deb9c19b450daf99dbf46b7fe79bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ('patchwork', '0026_add_user_bundles_backref'),
    ]

    operations = [
        migrations.AlterModelOptions(
            name='series', options={'verbose_name_plural': 'Series'},
        ),
    ]