diff options
| author | 2023-03-19 17:57:14 +0100 | |
|---|---|---|
| committer | 2023-03-19 17:57:14 +0100 | |
| commit | e25d1af314196f403c1437b7bfc9c4e07183ac6d (patch) | |
| tree | abb0303da3fc446809a317c2e0b9fab54e0d1d2f /pydis_site/apps/api/migrations | |
| parent | make generate-sha-tag a dependency for publish-static-review (diff) | |
| parent | Merge branch 'main' into group-all-workflows (diff) | |
Merge remote-tracking branch 'origin/group-all-workflows' 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), +        ), +    ]  |