mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
4bde00d925
Use --fake to force the migration
45 lines
1.8 KiB
Python
45 lines
1.8 KiB
Python
# Generated by Django 2.2 on 2019-05-20 12:04
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('part', '0001_initial'),
|
|
('build', '0001_initial'),
|
|
('stock', '0001_initial'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='builditem',
|
|
name='stock_item',
|
|
field=models.ForeignKey(help_text='Stock Item to allocate to build', on_delete=django.db.models.deletion.CASCADE, related_name='allocations', to='stock.StockItem'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='build',
|
|
name='completed_by',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='builds_completed', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
migrations.AddField(
|
|
model_name='build',
|
|
name='part',
|
|
field=models.ForeignKey(help_text='Select part to build', limit_choices_to={'active': True, 'buildable': True}, on_delete=django.db.models.deletion.CASCADE, related_name='builds', to='part.Part'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='build',
|
|
name='take_from',
|
|
field=models.ForeignKey(blank=True, help_text='Select location to take stock from for this build (leave blank to take from any stock location)', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='sourcing_builds', to='stock.StockLocation'),
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name='builditem',
|
|
unique_together={('build', 'stock_item')},
|
|
),
|
|
]
|