mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-02 21:38:48 +00:00
22 lines
465 B
Python
22 lines
465 B
Python
import InvenTree.fields
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('company', '0036_supplierpart_update_2'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='supplierpart',
|
|
name='MPN',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='supplierpart',
|
|
name='manufacturer',
|
|
),
|
|
]
|