Daily stats view.
[wolnelektury.git] / src / messaging / migrations / 0006_auto_20201126_1242.py
1 # Generated by Django 2.2.16 on 2020-11-26 11:42
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('messaging', '0005_auto_20200129_1309'),
10     ]
11
12     operations = [
13         migrations.AlterModelOptions(
14             name='contact',
15             options={'verbose_name': 'contact', 'verbose_name_plural': 'contacts'},
16         ),
17         migrations.AlterField(
18             model_name='contact',
19             name='level',
20             field=models.PositiveSmallIntegerField(choices=[(10, 'Cold'), (20, 'Would-be donor'), (30, 'One-time donor'), (40, 'Recurring donor'), (45, 'Manually set as member'), (50, 'Opt out')]),
21         ),
22     ]