diff options
| author | 2019-10-21 16:47:41 +0200 | |
|---|---|---|
| committer | 2019-10-21 16:47:41 +0200 | |
| commit | b4bdf501dea18e7d519ce65d92c4ae1c1ca23f5d (patch) | |
| tree | 1b7b496028ef88280b66b030845fb9517b0c0113 /pydis_site/apps | |
| parent | Change reminder.jump_url field to URLField (diff) | |
Add migrations for the reminder model
Diffstat (limited to 'pydis_site/apps')
| -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, +        ), +    ] | 
