mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-02 13:28:49 +00:00
* Update Meta class for StockLocation and PartCategory * Migration files * Add extra unique requirements to InvenTreeTree model - unique_together does not work as expected with null values
18 lines
410 B
Python
18 lines
410 B
Python
# Generated by Django 3.2.16 on 2023-02-17 21:40
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('stock', '0092_alter_stockitem_updated'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='stocklocation',
|
|
options={'verbose_name': 'Stock Location', 'verbose_name_plural': 'Stock Locations'},
|
|
),
|
|
]
|