Skip to content

Commit

Permalink
[#233] Fix tests messages
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmursa-dev committed Jan 15, 2025
1 parent 6610db7 commit c758e9e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Generated by Django 4.2.15 on 2025-01-15 13:47
# Generated by Django 4.2.15 on 2025-01-15 13:58

import django.core.validators
from django.db import migrations, models


Expand Down Expand Up @@ -54,4 +55,15 @@ class Migration(migrations.Migration):
verbose_name="soort object ID",
),
),
migrations.AlterField(
model_name="partijidentificator",
name="partij_identificator_object_id",
field=models.CharField(
blank=True,
help_text="Waarde van de eigenschap die het object identificeert, bijvoorbeeld: '123456788'.",
max_length=200,
validators=[django.core.validators.validate_integer],
verbose_name="object ID",
),
),
]
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ class PartijIdentificator(models.Model):
help_text=_(
"Waarde van de eigenschap die het object identificeert, bijvoorbeeld: '123456788'."
),
validators=[validate_integer],
max_length=200,
blank=True,
)
Expand Down

0 comments on commit c758e9e

Please sign in to comment.