Join migrations

This commit is contained in:
Renato Almeida de Oliveira Zaroubin 2025-04-04 20:33:07 +00:00
parent fa8343b7cb
commit 040ee1d8f7
2 changed files with 7 additions and 20 deletions

View File

@ -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),
),
] ]

View File

@ -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),
),
]