netbox/netbox/extras/migrations/0059_attachment_export_templates.py
2021-03-30 22:27:26 +02:00

19 lines
394 B
Python

# Generated by Django 3.2b1 on 2021-03-30 20: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),
),
]