mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
18 lines
361 B
Python
18 lines
361 B
Python
|
from django.db import migrations, models
|
||
|
import utilities.validators
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('tenancy', '0006_created_datetimefield'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='contact',
|
||
|
name='link',
|
||
|
field=models.URLField(blank=True),
|
||
|
),
|
||
|
]
|