mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
19 lines
399 B
Python
19 lines
399 B
Python
# Generated by Django 2.2 on 2019-04-29 12:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0012_part_active'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='part',
|
|
name='URL',
|
|
field=models.URLField(blank=True, help_text='Link to external URL'),
|
|
),
|
|
]
|