mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-03 05:48:47 +00:00
24 lines
504 B
Python
24 lines
504 B
Python
# Generated by Django 2.2.10 on 2020-04-05 22:43
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('stock', '0024_auto_20200405_2239'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='stockitem',
|
|
old_name='URL',
|
|
new_name='link',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='stockitemtracking',
|
|
old_name='URL',
|
|
new_name='link',
|
|
),
|
|
]
|