-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
preventing iteration over all attachments in database
- Loading branch information
petr.prikryl
committed
Feb 20, 2023
1 parent
52b2900
commit 1a17814
Showing
5 changed files
with
36 additions
and
13 deletions.
There are no files selected for viewing
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
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
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
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
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,27 @@ | ||
# Generated by Django 3.2.15 on 2022-09-14 15:45 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("post_office", "0011_models_help_text"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="attachment", | ||
name="headers", | ||
field=models.JSONField(blank=True, null=True, verbose_name="Headers"), | ||
), | ||
migrations.AlterField( | ||
model_name="email", | ||
name="context", | ||
field=models.JSONField(blank=True, null=True, verbose_name="Context"), | ||
), | ||
migrations.AlterField( | ||
model_name="email", | ||
name="headers", | ||
field=models.JSONField(blank=True, null=True, verbose_name="Headers"), | ||
), | ||
] |