mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
28 lines
780 B
Python
28 lines
780 B
Python
# Generated by Django 2.1.7 on 2019-04-08 14:49
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
def set_template_language(apps, schema_editor):
|
|
"""
|
|
Set the language for all existing ExportTemplates to Django (Jinja2 is the default for new ExportTemplates).
|
|
"""
|
|
ExportTemplate = apps.get_model('extras', 'ExportTemplate')
|
|
ExportTemplate.objects.update(template_language=10)
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('extras', '0017_exporttemplate_mime_type_length'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exporttemplate',
|
|
name='template_language',
|
|
field=models.PositiveSmallIntegerField(default=20),
|
|
),
|
|
migrations.RunPython(set_template_language),
|
|
]
|