mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 19:09:36 -06:00
22 lines
474 B
Python
22 lines
474 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('extras', '0076_tag_slug_unicode'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customlink',
|
|
name='link_text',
|
|
field=models.TextField(),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='customlink',
|
|
name='link_url',
|
|
field=models.TextField(),
|
|
),
|
|
]
|