diff options
author | 2022-11-06 02:20:11 +0100 | |
---|---|---|
committer | 2022-11-06 02:20:11 +0100 | |
commit | 5144f83c5cbd0571d1ca46f19da61860745d5f7e (patch) | |
tree | b514fa9e12f264b6dd323c8832c39d62a73fcd25 /pydis_site/apps/api/migrations | |
parent | Merge pull request #763 from python-discord/bot-tags (diff) |
add thread_id column to the nomination table
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..cb216a62 --- /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-05 23:53 + +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 thread's id", null=True), + ), + ] |