mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 21:16:46 +00:00
22 lines
568 B
Python
22 lines
568 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2018-04-14 06:24
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('supplier', '0003_auto_20180414_0540'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='supplierpart',
|
|
name='supplier',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='parts', to='supplier.Supplier'),
|
|
),
|
|
]
|