From 10e38bda7101f142a89ca0a8c935a74602411a6f Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Wed, 19 May 2021 17:43:32 +0300 Subject: Add help text to productgroup --- servo/migrations/0005_auto_20210518_1745.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 servo/migrations/0005_auto_20210518_1745.py diff --git a/servo/migrations/0005_auto_20210518_1745.py b/servo/migrations/0005_auto_20210518_1745.py new file mode 100644 index 0000000..bb9abad --- /dev/null +++ b/servo/migrations/0005_auto_20210518_1745.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.2 on 2021-05-18 15:45 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0004_auto_20210515_1414'), + ] + + operations = [ + migrations.AlterField( + model_name='product', + name='categories', + field=models.ManyToManyField(blank=True, help_text='Product categories', to='servo.ProductCategory', verbose_name='Categories'), + ), + migrations.AlterField( + model_name='product', + name='device_models', + field=models.ManyToManyField(blank=True, help_text='Compatible with these devices', to='servo.DeviceGroup', verbose_name='Device models'), + ), + ] -- cgit v1.2.3