diff --git a/edc_locator/migrations/0038_alter_historicalsubjectlocator_may_call_work_and_more.py b/edc_locator/migrations/0038_alter_historicalsubjectlocator_may_call_work_and_more.py new file mode 100644 index 0000000..d0decaa --- /dev/null +++ b/edc_locator/migrations/0038_alter_historicalsubjectlocator_may_call_work_and_more.py @@ -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 at work, 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 at work, by telephone or cell, by study staff for follow-up purposes during the study? ", + ), + ), + ]