blob: 2860046e751349b9a5475fec39e2e6517f4beee5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 3.0.14 on 2021-10-27 17:44
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api', '0073_otn_allow_GT_and_LT'),
]
operations = [
migrations.AddField(
model_name='reminder',
name='failures',
field=models.IntegerField(default=0, help_text='Number of times we attempted to send the reminder and failed.'),
),
]
|