-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ [#132] added api validation to check if nummeraanduiding_id is give…
…n when gegevens groep is filled in
- Loading branch information
1 parent
e50fd60
commit cc4d645
Showing
5 changed files
with
126 additions
and
0 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
32 changes: 32 additions & 0 deletions
32
src/openklant/components/contactgegevens/migrations/0002_auto_20240110_1136.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 3.2.23 on 2024-01-10 11:36 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("contactgegevens", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="organisatie", | ||
name="adres_nummeraanduiding_id", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Identificatie van het adres bij de Basisregistratie Adressen en Gebouwen.", | ||
max_length=255, | ||
verbose_name="nummeraanduiding ID", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="persoon", | ||
name="adres_nummeraanduiding_id", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Identificatie van het adres bij de Basisregistratie Adressen en Gebouwen.", | ||
max_length=255, | ||
verbose_name="nummeraanduiding ID", | ||
), | ||
), | ||
] |
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