mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
4ac8353099
- Ref: https://stackoverflow.com/questions/41756572/django-urlfield-with-custom-scheme - Apply this to the URL field in the Part model
20 lines
442 B
Python
20 lines
442 B
Python
# Generated by Django 2.2.5 on 2019-09-13 14:01
|
|
|
|
import InvenTree.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0022_auto_20190908_0918'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='part',
|
|
name='URL',
|
|
field=InvenTree.fields.InvenTreeURLField(blank=True, help_text='Link to extenal URL'),
|
|
),
|
|
]
|