diff options
author | 2023-02-17 11:40:29 +0530 | |
---|---|---|
committer | 2023-02-17 11:40:29 +0530 | |
commit | 8a954029a2f0f22cde599afee3ff8195680e621e (patch) | |
tree | 2907273cff7e4ed75bbdfe043877678199ecc003 /pydis_site/apps/api/migrations | |
parent | Merge pull request #875 from Ibrahim2750mi/events-calendar (diff) |
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..e32219c8 --- /dev/null +++ b/pydis_site/apps/api/migrations/0086_infraction_jump_url.py @@ -0,0 +1,18 @@ +# Generated by Django 4.1.6 on 2023-02-13 22:23 + +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.CharField(default='', help_text='The jump url to message invoking the infraction.', max_length=88), + ), + ] |