mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
20 lines
445 B
Python
20 lines
445 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 = [
|
|
('build', '0005_auto_20190604_2217'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='build',
|
|
name='URL',
|
|
field=InvenTree.fields.InvenTreeURLField(blank=True, help_text='Link to external URL'),
|
|
),
|
|
]
|