diff options
author | 2023-03-12 09:46:43 +0100 | |
---|---|---|
committer | 2023-03-12 09:46:43 +0100 | |
commit | 306855f304b1cf9683b08abfd8fa73e0a23bf03a (patch) | |
tree | 8d1dea591cff7c97e2cde03338e3a81a7ba184ae /pydis_site/apps/api/migrations | |
parent | Merge pull request #896 from python-discord/dependabot/pip/django-environ-0.10.0 (diff) | |
parent | Replace CharField with URLField and set default to None (diff) |
Merge pull request #824 from python-discord/vivek/add-jump-url-field
Add jump_url field to infraction model
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), + ), + ] |