Skip to content

Commit

Permalink
feat: add migration for field help text
Browse files Browse the repository at this point in the history
  • Loading branch information
koeaw committed Feb 8, 2024
1 parent 2473cc0 commit 29835e6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions apis_ontology/migrations/0035_alter_expression_relevant_pages.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.2.10 on 2024-02-08 14:01

from django.db import migrations, models


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

operations = [
migrations.AlterField(
model_name="expression",
name="relevant_pages",
field=models.CharField(
blank=True,
help_text='Eingabe muss im Format "X-Y" erfolgen, z.B. 5-12',
null=True,
verbose_name="Forschungsrelevante Seiten",
),
),
]

0 comments on commit 29835e6

Please sign in to comment.