-
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 specify queryset by filters
- Loading branch information
1 parent
7a9ec54
commit 53b53d1
Showing
2 changed files
with
31 additions
and
6 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
import_export_celery/migrations/0011_alter_exportjob_queryset.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 12:21 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("import_export_celery", "0010_auto_20231013_0904"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="exportjob", | ||
name="queryset", | ||
field=models.JSONField( | ||
verbose_name="JSON list of pks to export or dict of queryset filters" | ||
), | ||
), | ||
] |
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