-
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.
🚧 [#15] Keep structure of expanded data from OZ
- Loading branch information
1 parent
afd7eaa
commit 3ddcdfc
Showing
6 changed files
with
49 additions
and
20 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
30 changes: 30 additions & 0 deletions
30
...src/openarchiefbeheer/zaken/migrations/0003_zaak__expand_alter_zaak_resultaat_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,30 @@ | ||
# Generated by Django 4.2.11 on 2024-05-14 12:03 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("zaken", "0002_alter_zaak_resultaat_and_zaak_zaaktype"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="zaak", | ||
name="_expand", | ||
field=models.JSONField( | ||
blank=True, default=dict, null=True, verbose_name="expand" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="zaak", | ||
name="resultaat", | ||
field=models.URLField(blank=True, null=True, verbose_name="resultaat"), | ||
), | ||
migrations.AlterField( | ||
model_name="zaak", | ||
name="zaaktype", | ||
field=models.URLField(blank=True, null=True, verbose_name="zaaktype"), | ||
), | ||
] |
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