diff options
author | 2023-03-13 23:25:57 +0100 | |
---|---|---|
committer | 2023-03-13 23:25:57 +0100 | |
commit | 19b255ca4230b4653d7360a16b34a60b018fc200 (patch) | |
tree | ba0b55b64d78f76063ad0e597be35130242a0d8e /pydis_site/apps/api/migrations | |
parent | appease linter (diff) | |
parent | Merge pull request #824 from python-discord/vivek/add-jump-url-field (diff) |
Merge branch 'main' into group-all-workflows
Diffstat (limited to 'pydis_site/apps/api/migrations')
-rw-r--r-- | pydis_site/apps/api/migrations/0086_infraction_jump_url.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0086_infraction_jump_url.py b/pydis_site/apps/api/migrations/0086_infraction_jump_url.py new file mode 100644 index 00000000..7ae65751 --- /dev/null +++ b/pydis_site/apps/api/migrations/0086_infraction_jump_url.py @@ -0,0 +1,18 @@ +# Generated by Django 4.1.7 on 2023-03-10 17:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0085_add_thread_id_to_nominations'), + ] + + operations = [ + migrations.AddField( + model_name='infraction', + name='jump_url', + field=models.URLField(default=None, help_text='The jump url to message invoking the infraction.', max_length=88, null=True), + ), + ] |