Skip to content

Commit

Permalink
feat: migration for verbose_name, help_text change
Browse files Browse the repository at this point in the history
  • Loading branch information
koeaw committed Feb 12, 2024
1 parent 3274be2 commit 7fd9171
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions apis_ontology/migrations/0037_alter_expression_publication_date.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.2.10 on 2024-02-12 09:58

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("apis_ontology", "0036_alter_expression_publication_date_iso"),
]

operations = [
migrations.AlterField(
model_name="expression",
name="publication_date",
field=models.CharField(
blank=True,
help_text="Erlaubte Formatvariationen u.a. 1.1.1920, 12/2010, 1999-12-23,...",
null=True,
verbose_name="Erscheinungsdatum",
),
),
]

0 comments on commit 7fd9171

Please sign in to comment.