mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
b28487760a
- Previous migration needed some tweaking to get it to run... because.. why? - It seems to pass when running manage.py migrate but fails when running manage.py test - Stumped on this one
19 lines
354 B
Python
19 lines
354 B
Python
# Generated by Django 2.2.10 on 2020-04-06 00:45
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0034_auto_20200404_1238'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='part',
|
|
old_name='URL',
|
|
new_name='link',
|
|
),
|
|
]
|