2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-10 01:08:49 +00:00
InvenTree/InvenTree/company/migrations/0017_auto_20200413_0320.py
Oliver Walters 8b366fc4a0 Rename "manufacturer" to "manufacturer_name"
(cherry picked from commit e9e734acce4d5f2f3bfea2d0557594d54d42ed2d)
2020-04-13 20:19:59 +10:00

19 lines
387 B
Python

# Generated by Django 2.2.10 on 2020-04-13 03:20
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('company', '0016_auto_20200412_2330'),
]
operations = [
migrations.RenameField(
model_name='supplierpart',
old_name='manufacturer',
new_name='manufacturer_name',
),
]