Skip to content

Commit

Permalink
[#310] Fix migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmursa-dev committed Jan 9, 2025
1 parent 6096e96 commit c26d587
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ class Migration(migrations.Migration):
]

operations = [
migrations.RunPython(_check_nummeraanduiding_length),
migrations.RunPython(
code=_check_nummeraanduiding_length,
reverse_code=migrations.RunPython.noop,
),
migrations.AlterField(
model_name="organisatie",
name="adres_nummeraanduiding_id",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ class Migration(migrations.Migration):
]

operations = [
migrations.RunPython(_check_nummeraanduiding_length),
migrations.RunPython(
code=_check_nummeraanduiding_length,
reverse_code=migrations.RunPython.noop,
),
migrations.AlterField(
model_name="betrokkene",
name="bezoekadres_nummeraanduiding_id",
Expand Down

0 comments on commit c26d587

Please sign in to comment.