mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-03 05:48:47 +00:00
25 lines
666 B
Python
25 lines
666 B
Python
# Generated by Django 2.2.5 on 2019-09-13 14:07
|
|
|
|
import InvenTree.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('stock', '0014_auto_20190908_0918'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='stockitem',
|
|
name='URL',
|
|
field=InvenTree.fields.InvenTreeURLField(blank=True, max_length=125),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='stockitemtracking',
|
|
name='URL',
|
|
field=InvenTree.fields.InvenTreeURLField(blank=True, help_text='Link to external page for further information'),
|
|
),
|
|
]
|