1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Changelog & docs for #5380

This commit is contained in:
Jeremy Stretch
2021-03-30 18:59:47 -04:00
parent 34457ea1b4
commit 0eb9f41470
3 changed files with 5 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('extras', '0058_journalentry'),
]
operations = [
migrations.AddField(
model_name='exporttemplate',
name='as_attachment',
field=models.BooleanField(default=True),
),
]