From 5831461f729cfaad268e8c538e6201667eda9cec Mon Sep 17 00:00:00 2001
From: Ernesto Rico Schmidt <ernesto@helsinki.at>
Date: Fri, 22 Jul 2022 12:18:16 -0400
Subject: [PATCH] Add subtitle field to Category

---
 program/models.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/program/models.py b/program/models.py
index 9ec7255f..04bedd2f 100644
--- a/program/models.py
+++ b/program/models.py
@@ -61,6 +61,7 @@ class Type(models.Model):
 
 class Category(models.Model):
     name = models.CharField(max_length=32)
+    subtitle = models.TextField(blank=True, null=True)
     slug = models.SlugField(max_length=32, unique=True)
     is_active = models.BooleanField(default=True)
     description = models.TextField(blank=True)
-- 
GitLab