diff options
author | 2019-10-28 11:37:09 +0000 | |
---|---|---|
committer | 2019-10-28 11:37:09 +0000 | |
commit | 83b9a919e63f53e4b4b2306a9eed40acf1e8d3e4 (patch) | |
tree | 264ecc8938ac1c8856ef7c56f8fcd2fc3ed330d4 /pydis_site/apps/api/migrations | |
parent | Merge branch 'master' into allauth-user-settings (diff) | |
parent | Merge pull request #301 from python-discord/new-rules (diff) |
Merge branch 'master' into allauth-user-settings
Diffstat (limited to 'pydis_site/apps/api/migrations')
-rw-r--r-- | pydis_site/apps/api/migrations/0046_reminder_jump_url.py | 19 |
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, + ), + ] |