diff options
Diffstat (limited to '')
-rw-r--r-- | pyblackbird_cc/resources/migrations/0012_resourcecategory_colour_css_class.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/migrations/0012_resourcecategory_colour_css_class.py b/pyblackbird_cc/resources/migrations/0012_resourcecategory_colour_css_class.py new file mode 100644 index 0000000..b48ba61 --- /dev/null +++ b/pyblackbird_cc/resources/migrations/0012_resourcecategory_colour_css_class.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.4 on 2024-07-11 15:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('resources', '0011_alter_resource_curriculum'), + ] + + operations = [ + migrations.AddField( + model_name='resourcecategory', + name='colour_css_class', + field=models.CharField(blank=True, max_length=56, null=True), + ), + ] |