mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-20 02:06:42 -06:00
Add migration for CustomLink button_class default
This commit is contained in:
parent
5d8cf22897
commit
5b09e4ac0c
16
netbox/extras/migrations/0060_customlink_button_class.py
Normal file
16
netbox/extras/migrations/0060_customlink_button_class.py
Normal file
@ -0,0 +1,16 @@
|
||||
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),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user