-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add possibility to set additional data parameters in resource
- Loading branch information
1 parent
7a9ec54
commit 8bcc25f
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
import_export_celery/migrations/0011_exportjob_resource_kwargs.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 5.0.7 on 2024-07-29 08:03 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("import_export_celery", "0010_auto_20231013_0904"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="exportjob", | ||
name="resource_kwargs", | ||
field=models.JSONField( | ||
blank=True, default=None, null=True, verbose_name="Resource additional data parameters" | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters