mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-22 11:38:45 -06:00
Closes #8593: Add link field to contact model
This commit is contained in:
17
netbox/tenancy/migrations/0007_contact_link.py
Normal file
17
netbox/tenancy/migrations/0007_contact_link.py
Normal file
@@ -0,0 +1,17 @@
|
||||
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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user