Skip to content

Commit 79a3609

Browse files
committed
Migration for tweakd plural forms.
- Legacy-Id: 11517
1 parent e34a5ca commit 79a3609

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import models, migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('mailinglists', '0003_import_subscribers'),
11+
]
12+
13+
operations = [
14+
migrations.AlterModelOptions(
15+
name='subscribed',
16+
options={'verbose_name_plural': 'Subscribed'},
17+
),
18+
migrations.AlterModelOptions(
19+
name='whitelisted',
20+
options={'verbose_name_plural': 'Whitelisted'},
21+
),
22+
]

0 commit comments

Comments
 (0)