2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 19:15:41 +00:00

Rebuilt migrations again (arrrrrrrrrrrrrrrrrrrrrrrrrrgh never do this)

This commit is contained in:
Oliver Walters
2019-05-20 21:45:37 +10:00
parent 34620b22b0
commit 70be052c74
8 changed files with 57 additions and 24 deletions

View File

@ -1,4 +1,4 @@
# Generated by Django 2.2 on 2019-05-18 14:04
# Generated by Django 2.2 on 2019-05-20 09:22
from django.conf import settings
import django.core.validators
@ -11,9 +11,9 @@ class Migration(migrations.Migration):
initial = True
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('company', '0001_initial'),
('part', '0001_initial'),
('company', '0001_initial'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
@ -70,7 +70,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='stockitem',
name='part',
field=models.ForeignKey(help_text='Base part', on_delete=django.db.models.deletion.CASCADE, related_name='locations', to='part.Part'),
field=models.ForeignKey(help_text='Base part', on_delete=django.db.models.deletion.CASCADE, related_name='stock_items', to='part.Part'),
),
migrations.AddField(
model_name='stockitem',

View File

@ -186,7 +186,7 @@ class StockItem(models.Model):
}
)
part = models.ForeignKey('part.Part', on_delete=models.CASCADE, related_name='locations', help_text='Base part')
part = models.ForeignKey('part.Part', on_delete=models.CASCADE, related_name='stock_items', help_text='Base part')
supplier_part = models.ForeignKey('company.SupplierPart', blank=True, null=True, on_delete=models.SET_NULL,
help_text='Select a matching supplier part for this stock item')