2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-04 20:51:00 +00:00

Alter "URL" to "link" for Company models

This commit is contained in:
Oliver Walters
2020-04-06 11:36:25 +10:00
parent 789712acbe
commit a306ad0bc3
8 changed files with 51 additions and 18 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 2.2.10 on 2020-04-06 01:31
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('company', '0012_auto_20200318_1114'),
]
operations = [
migrations.RenameField(
model_name='company',
old_name='URL',
new_name='link',
),
migrations.RenameField(
model_name='supplierpart',
old_name='URL',
new_name='link',
),
]