diff options
author | 2022-11-07 18:18:03 +0100 | |
---|---|---|
committer | 2022-11-07 18:18:03 +0100 | |
commit | 5c2b8c2ccb234dad6f31e83144d2e7879889e8aa (patch) | |
tree | a8db74f4314f6ec7f9100d61e5b160b82ea5656a /pydis_site/apps/api/migrations | |
parent | delete buggy migration (diff) |
fix grammar in thread_id's help text
Diffstat (limited to 'pydis_site/apps/api/migrations')
-rw-r--r-- | pydis_site/apps/api/migrations/0085_add_thread_id_to_nomination.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0085_add_thread_id_to_nomination.py b/pydis_site/apps/api/migrations/0085_add_thread_id_to_nomination.py new file mode 100644 index 00000000..ee9707f0 --- /dev/null +++ b/pydis_site/apps/api/migrations/0085_add_thread_id_to_nomination.py @@ -0,0 +1,18 @@ +# Generated by Django 4.1.2 on 2022-11-07 17:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0084_infraction_last_applied'), + ] + + operations = [ + migrations.AddField( + model_name='nomination', + name='thread_id', + field=models.BigIntegerField(blank=True, help_text="The nomination vote's thread id.", null=True), + ), + ] |