mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
17 lines
380 B
Python
17 lines
380 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('extras', '0059_exporttemplate_as_attachment'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customlink',
|
|
name='button_class',
|
|
field=models.CharField(default='outline-dark', max_length=30),
|
|
),
|
|
]
|