From 19076b03ba2bc1cfdff4d6192df196fd853f5019 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 20 Jan 2024 09:16:18 +0100 Subject: [PATCH] add missing migration --- .../0019_alter_productcategory_options.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/purchase/migrations/0019_alter_productcategory_options.py diff --git a/src/purchase/migrations/0019_alter_productcategory_options.py b/src/purchase/migrations/0019_alter_productcategory_options.py new file mode 100644 index 0000000..5e51ed5 --- /dev/null +++ b/src/purchase/migrations/0019_alter_productcategory_options.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.8 on 2024-01-20 08:15 + +from django.db import migrations + + +class Migration(migrations.Migration): + dependencies = [ + ("purchase", "0018_product_category"), + ] + + operations = [ + migrations.AlterModelOptions( + name="productcategory", + options={ + "verbose_name": "product category", + "verbose_name_plural": "product categories", + }, + ), + ]