Skip to content

Commit

Permalink
Merge branch 'release/1.0.2' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Jan 22, 2025
2 parents af8c976 + 3250507 commit defb85a
Showing 1 changed file with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Generated by Django 5.1.5 on 2025-01-22 03:27

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("edc_locator", "0037_alter_historicalsubjectlocator_consent_model_and_more"),
]

operations = [
migrations.AlterField(
model_name="historicalsubjectlocator",
name="may_call_work",
field=models.CharField(
choices=[("Yes", "Yes"), ("No", "No")],
max_length=25,
verbose_name="Has the participant given permission to be contacted <b>at work</b>, by telephone or cell, by study staff for follow-up purposes during the study? ",
),
),
migrations.AlterField(
model_name="subjectlocator",
name="may_call_work",
field=models.CharField(
choices=[("Yes", "Yes"), ("No", "No")],
max_length=25,
verbose_name="Has the participant given permission to be contacted <b>at work</b>, by telephone or cell, by study staff for follow-up purposes during the study? ",
),
),
]

0 comments on commit defb85a

Please sign in to comment.