mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
- Only list labels which are enabled - Allows labels to be hidden / disabled without being deleted
19 lines
445 B
Python
19 lines
445 B
Python
# Generated by Django 3.0.7 on 2020-08-22 23:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('label', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='stockitemlabel',
|
|
name='enabled',
|
|
field=models.BooleanField(default=True, help_text='Label template is enabled', verbose_name='Enabled'),
|
|
),
|
|
]
|