diff --git a/program/migrations/0024_category_subtitle.py b/program/migrations/0024_category_subtitle.py new file mode 100644 index 0000000000000000000000000000000000000000..4c30430787b15b719f9b5b514530801cb84476af --- /dev/null +++ b/program/migrations/0024_category_subtitle.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.14 on 2022-07-22 16:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("program", "0023_auto_20220722_1747"), + ] + + operations = [ + migrations.AddField( + model_name="category", + name="subtitle", + field=models.TextField(blank=True, null=True), + ), + ]