blob: 1a4f58738ffd809d4066299a111ed57075e637bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Generated by Django 4.2.1 on 2023-05-23 15:25
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('lttr', '0022_postcardsubscriber'),
]
operations = [
migrations.AlterModelOptions(
name='newslettermailing',
options={'get_latest_by': 'pub_date', 'ordering': ('-pub_date', '-newsletter')},
),
migrations.AlterModelOptions(
name='postcardsubscriber',
options={'verbose_name': 'Postcard Subscriber'},
),
]
|