mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
19 lines
392 B
Python
19 lines
392 B
Python
|
# Generated by Django 3.2.11 on 2022-01-10 16:45
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('extras', '0069_custom_object_field'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='customlink',
|
||
|
name='enabled',
|
||
|
field=models.BooleanField(default=True),
|
||
|
),
|
||
|
]
|