Skip to content

Commit

Permalink
[#233] Remove validate_integer, already exists in other validator
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmursa-dev committed Jan 15, 2025
1 parent 53727a3 commit 24089fd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Generated by Django 4.2.15 on 2025-01-06 13:52
# Generated by Django 4.2.15 on 2025-01-15 13:47

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


Expand Down Expand Up @@ -55,15 +54,4 @@ 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,7 +374,6 @@ 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 24089fd

Please sign in to comment.