aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/migrations
diff options
context:
space:
mode:
authorGravatar Sebastiaan Zeeff <[email protected]>2019-11-03 20:58:40 +0100
committerGravatar Sebastiaan Zeeff <[email protected]>2019-11-03 20:58:40 +0100
commit982571443adaeb33898f6cbc013ad2b4a7e90ab6 (patch)
tree9f97d83fd7089ef7551bd6c7c2fecef9d59822d6 /pydis_site/apps/api/migrations
parentMake test less fragile and improve test name (diff)
parentMerge pull request #293 from python-discord/update-dependency-pinning (diff)
Merge branch 'master' into active-infractions-validation
Diffstat (limited to 'pydis_site/apps/api/migrations')
-rw-r--r--pydis_site/apps/api/migrations/0046_reminder_jump_url.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0046_reminder_jump_url.py b/pydis_site/apps/api/migrations/0046_reminder_jump_url.py
new file mode 100644
index 00000000..b145f0dd
--- /dev/null
+++ b/pydis_site/apps/api/migrations/0046_reminder_jump_url.py
@@ -0,0 +1,19 @@
+# Generated by Django 2.2.6 on 2019-10-21 14:46
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('api', '0045_add_plural_name_for_log_entry'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='reminder',
+ name='jump_url',
+ field=models.URLField(default='', help_text='The jump url to the message that created the reminder', max_length=88),
+ preserve_default=False,
+ ),
+ ]