added verbose name to storages to be printed on labels etc.

This commit is contained in:
2024-11-16 13:22:59 +01:00
parent 50ecaa2cc0
commit a77f46d697
7 changed files with 29 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.5 on 2024-11-16 11:37
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('parts', '0011_auto_20241110_1242'),
]
operations = [
migrations.AddField(
model_name='storage',
name='verbose_name',
field=models.CharField(blank=True, max_length=100, null=True),
),
]