mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-27 02:48:38 -06:00
Join migrations
This commit is contained in:
parent
fa8343b7cb
commit
040ee1d8f7
@ -1,4 +1,4 @@
|
|||||||
# Generated by Django 5.2b1 on 2025-04-04 00:58
|
# Generated by Django 5.2b1 on 2025-04-04 20:25
|
||||||
|
|
||||||
from django.db import migrations, models
|
from django.db import migrations, models
|
||||||
|
|
||||||
@ -6,7 +6,7 @@ from django.db import migrations, models
|
|||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('extras', '0126_exporttemplate_environment_params'),
|
('extras', '0125_exporttemplate_file_name'),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
@ -30,4 +30,9 @@ class Migration(migrations.Migration):
|
|||||||
name='mime_type',
|
name='mime_type',
|
||||||
field=models.CharField(blank=True, max_length=50),
|
field=models.CharField(blank=True, max_length=50),
|
||||||
),
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='exporttemplate',
|
||||||
|
name='environment_params',
|
||||||
|
field=models.JSONField(blank=True, default=dict, null=True),
|
||||||
|
),
|
||||||
]
|
]
|
@ -1,18 +0,0 @@
|
|||||||
# Generated by Django 5.2b1 on 2025-04-03 01:08
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('extras', '0125_exporttemplate_file_name'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name='exporttemplate',
|
|
||||||
name='environment_params',
|
|
||||||
field=models.JSONField(blank=True, default=dict, null=True),
|
|
||||||
),
|
|
||||||
]
|
|
Loading…
Reference in New Issue
Block a user