From 7c65420ddb4449bd1c56596a4ed5093752779979 Mon Sep 17 00:00:00 2001 From: Etty Date: Tue, 30 Jan 2024 13:12:53 +0000 Subject: [PATCH] Add migration --- .../migrations/0018_grant_plain_thread_id.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 backend/grants/migrations/0018_grant_plain_thread_id.py diff --git a/backend/grants/migrations/0018_grant_plain_thread_id.py b/backend/grants/migrations/0018_grant_plain_thread_id.py new file mode 100644 index 0000000000..4ed5854ed4 --- /dev/null +++ b/backend/grants/migrations/0018_grant_plain_thread_id.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.7 on 2024-01-30 12:39 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("grants", "0017_alter_grant_github_handle"), + ] + + operations = [ + migrations.AddField( + model_name="grant", + name="plain_thread_id", + field=models.CharField( + blank=True, max_length=50, null=True, verbose_name="Plain threadID" + ), + ), + ]