Skip to content

Commit

Permalink
added missing migration (only verbose_name changed)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbonf committed Oct 29, 2024
1 parent 4959f85 commit 960cec5
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.11 on 2024-10-29 13:40

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("participants", "0012_alter_participantdata_birth_date_and_more"),
]

operations = [
migrations.AlterField(
model_name="participantdata",
name="languages",
field=models.ManyToManyField(to="participants.language", verbose_name="participant:attribute:languages"),
),
]

0 comments on commit 960cec5

Please sign in to comment.