-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4408c51
commit fb69999
Showing
5 changed files
with
210 additions
and
3 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
...penarchiefbeheer/destruction/migrations/0024_destructionlist_internal_results_and_more.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,32 @@ | ||
# Generated by Django 4.2.16 on 2024-10-14 12:51 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("destruction", "0023_destructionlist_destruction_report"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="destructionlist", | ||
name="internal_results", | ||
field=models.JSONField( | ||
default=dict, | ||
help_text="After this list is processed, the URL of the resources created in Open Zaak to store the destruction report are stored here.", | ||
verbose_name="internal result", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="destructionlist", | ||
name="zaak_destruction_report_url", | ||
field=models.URLField( | ||
blank=True, | ||
help_text="The URL of the case containing the destruction report for this destruction list.", | ||
max_length=1000, | ||
verbose_name="zaak destruction report URL", | ||
), | ||
), | ||
] |
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