aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/migrations
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2021-11-07 15:08:13 +0000
committerGravatar GitHub <[email protected]>2021-11-07 15:08:13 +0000
commit613e0730c5391c33d35106049bb6e8537e644446 (patch)
tree3be351f403e75d56eb7b08a5e20aa432b2a64ec5 /pydis_site/apps/api/migrations
parentMerge pull request #617 from python-discord/mbaruh-patch-1 (diff)
parentAdds Failures Field To Reminders (diff)
Merge pull request #618 from python-discord/save-reminders
Adds Failures Field To Reminders
Diffstat (limited to 'pydis_site/apps/api/migrations')
-rw-r--r--pydis_site/apps/api/migrations/0074_reminder_failures.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0074_reminder_failures.py b/pydis_site/apps/api/migrations/0074_reminder_failures.py
new file mode 100644
index 00000000..2860046e
--- /dev/null
+++ b/pydis_site/apps/api/migrations/0074_reminder_failures.py
@@ -0,0 +1,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.'),
+ ),
+ ]