aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2021-05-19 17:43:32 +0300
committerFilipp Lepalaan <filipp@mac.com>2021-05-19 17:43:32 +0300
commit10e38bda7101f142a89ca0a8c935a74602411a6f (patch)
tree64ee2b57632c95b616dbf50c9bf912a5d4ca0536
parent3bd2dcd002bc072212355b90fc1ce4a7df7ce4a5 (diff)
downloadServo-10e38bda7101f142a89ca0a8c935a74602411a6f.tar.gz
Servo-10e38bda7101f142a89ca0a8c935a74602411a6f.tar.bz2
Servo-10e38bda7101f142a89ca0a8c935a74602411a6f.zip
Add help text to productgroup
-rw-r--r--servo/migrations/0005_auto_20210518_1745.py23
1 files changed, 23 insertions, 0 deletions
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'),
+ ),
+ ]