meta-edc 1.1.18__py3-none-any.whl → 1.1.19__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of meta-edc might be problematic. Click here for more details.

Files changed (30) hide show
  1. meta_consent/admin/__init__.py +1 -0
  2. meta_consent/admin/subject_consent_spfq_admin.py +58 -0
  3. meta_consent/forms/__init__.py +2 -0
  4. meta_consent/forms/subject_consent_spfq_form.py +55 -0
  5. meta_consent/migrations/0033_historicalsubjectconsentspfq_subjectconsentspfq.py +615 -0
  6. meta_consent/models/__init__.py +2 -0
  7. meta_consent/models/subject_consent_spfq.py +103 -0
  8. {meta_edc-1.1.18.dist-info → meta_edc-1.1.19.dist-info}/METADATA +5 -5
  9. {meta_edc-1.1.18.dist-info → meta_edc-1.1.19.dist-info}/RECORD +30 -15
  10. meta_labs/list_data.py +2 -2
  11. meta_rando/migrations/0007_spfqlist.py +197 -0
  12. meta_rando/models/__init__.py +2 -0
  13. meta_rando/{models.py → models/randomization_list.py} +3 -3
  14. meta_rando/models/spfq_list.py +26 -0
  15. meta_subject/admin/__init__.py +2 -0
  16. meta_subject/admin/spfg_admin.py +103 -0
  17. meta_subject/choices.py +37 -0
  18. meta_subject/constants.py +14 -0
  19. meta_subject/forms/__init__.py +2 -0
  20. meta_subject/forms/spfq_form.py +65 -0
  21. meta_subject/migrations/0228_bloodresultshba1c_hba1c_datetime_and_more.py +1 -6780
  22. meta_subject/migrations/0229_alter_glucosefbg_consent_model_and_more.py +1918 -0
  23. meta_subject/migrations/0230_alter_historicaldelivery_action_identifier_and_more.py +1733 -0
  24. meta_subject/migrations/0231_alter_historicalmedicationadherence_consent_model_and_more.py +2054 -0
  25. meta_subject/migrations/0232_alter_patienthistory_concomitant_conditions_and_more.py +1170 -0
  26. meta_subject/migrations/0233_historicalspfq_spfq.py +1066 -0
  27. meta_subject/models/__init__.py +2 -0
  28. meta_subject/models/spfq.py +190 -0
  29. {meta_edc-1.1.18.dist-info → meta_edc-1.1.19.dist-info}/WHEEL +0 -0
  30. {meta_edc-1.1.18.dist-info → meta_edc-1.1.19.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,1918 @@
1
+ # Generated by Django 5.2.6 on 2025-09-30 00:36
2
+
3
+ import _socket
4
+ import django.core.validators
5
+ import django.db.models.deletion
6
+ import django.utils.timezone
7
+ import django_audit_fields.fields.hostname_modification_field
8
+ import django_audit_fields.fields.userfield
9
+ import django_audit_fields.fields.uuid_auto_field
10
+ import django_revision.revision_field
11
+ import edc_crf.model_mixins.crf_status_model_mixin
12
+ import edc_model.models.fields.initials_field
13
+ import edc_model.validators.date
14
+ import edc_model_fields.fields.other_charfield
15
+ import edc_protocol.validators
16
+ import edc_visit_tracking.managers
17
+ import simple_history.models
18
+ import uuid
19
+ from django.conf import settings
20
+ from django.db import migrations, models
21
+
22
+
23
+ class Migration(migrations.Migration):
24
+ dependencies = [
25
+ ("meta_subject", "0228_bloodresultshba1c_hba1c_datetime_and_more"),
26
+ ("sites", "0002_alter_domain_unique"),
27
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
28
+ ]
29
+
30
+ operations = [
31
+ migrations.AlterField(
32
+ model_name="glucosefbg",
33
+ name="consent_model",
34
+ field=models.CharField(blank=True, default="", max_length=50),
35
+ ),
36
+ migrations.AlterField(
37
+ model_name="glucosefbg",
38
+ name="consent_version",
39
+ field=models.CharField(blank=True, default="", max_length=10),
40
+ ),
41
+ migrations.AlterField(
42
+ model_name="glucosefbg",
43
+ name="crf_status_comments",
44
+ field=models.TextField(
45
+ blank=True,
46
+ default="",
47
+ help_text="for example, why some data is still pending",
48
+ verbose_name="Any comments related to status of this CRF",
49
+ ),
50
+ ),
51
+ migrations.AlterField(
52
+ model_name="glucosefbg",
53
+ name="device_created",
54
+ field=models.CharField(
55
+ blank=True, default="", max_length=10, verbose_name="Device created"
56
+ ),
57
+ ),
58
+ migrations.AlterField(
59
+ model_name="glucosefbg",
60
+ name="device_modified",
61
+ field=models.CharField(
62
+ blank=True, default="", max_length=10, verbose_name="Device modified"
63
+ ),
64
+ ),
65
+ migrations.AlterField(
66
+ model_name="glucosefbg",
67
+ name="fbg_not_performed_reason",
68
+ field=models.CharField(
69
+ blank=True,
70
+ default="",
71
+ max_length=150,
72
+ verbose_name="If NO, provide reason",
73
+ ),
74
+ ),
75
+ migrations.AlterField(
76
+ model_name="glucosefbg",
77
+ name="locale_created",
78
+ field=models.CharField(
79
+ blank=True,
80
+ default="",
81
+ help_text="Auto-updated by Modeladmin",
82
+ max_length=10,
83
+ verbose_name="Locale created",
84
+ ),
85
+ ),
86
+ migrations.AlterField(
87
+ model_name="glucosefbg",
88
+ name="locale_modified",
89
+ field=models.CharField(
90
+ blank=True,
91
+ default="",
92
+ help_text="Auto-updated by Modeladmin",
93
+ max_length=10,
94
+ verbose_name="Locale modified",
95
+ ),
96
+ ),
97
+ migrations.AlterField(
98
+ model_name="glucosefbg",
99
+ name="report_datetime",
100
+ field=models.DateTimeField(
101
+ default=django.utils.timezone.now,
102
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
103
+ validators=[
104
+ edc_protocol.validators.datetime_not_before_study_start,
105
+ edc_model.validators.date.datetime_not_future,
106
+ ],
107
+ verbose_name="Report Date",
108
+ ),
109
+ ),
110
+ migrations.AlterField(
111
+ model_name="glucosefbg",
112
+ name="revision",
113
+ field=django_revision.revision_field.RevisionField(
114
+ blank=True,
115
+ default="",
116
+ editable=False,
117
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
118
+ max_length=75,
119
+ verbose_name="Revision",
120
+ ),
121
+ ),
122
+ migrations.AlterField(
123
+ model_name="healtheconomics",
124
+ name="consent_model",
125
+ field=models.CharField(blank=True, default="", max_length=50),
126
+ ),
127
+ migrations.AlterField(
128
+ model_name="healtheconomics",
129
+ name="consent_version",
130
+ field=models.CharField(blank=True, default="", max_length=10),
131
+ ),
132
+ migrations.AlterField(
133
+ model_name="healtheconomics",
134
+ name="crf_status_comments",
135
+ field=models.TextField(
136
+ blank=True,
137
+ default="",
138
+ help_text="for example, why some data is still pending",
139
+ verbose_name="Any comments related to status of this CRF",
140
+ ),
141
+ ),
142
+ migrations.AlterField(
143
+ model_name="healtheconomics",
144
+ name="device_created",
145
+ field=models.CharField(
146
+ blank=True, default="", max_length=10, verbose_name="Device created"
147
+ ),
148
+ ),
149
+ migrations.AlterField(
150
+ model_name="healtheconomics",
151
+ name="device_modified",
152
+ field=models.CharField(
153
+ blank=True, default="", max_length=10, verbose_name="Device modified"
154
+ ),
155
+ ),
156
+ migrations.AlterField(
157
+ model_name="healtheconomics",
158
+ name="expenditure_other_detail",
159
+ field=models.TextField(
160
+ blank=True, default="", verbose_name="If YES, what was the activity"
161
+ ),
162
+ ),
163
+ migrations.AlterField(
164
+ model_name="healtheconomics",
165
+ name="highest_earner",
166
+ field=models.CharField(
167
+ blank=True,
168
+ default="",
169
+ max_length=50,
170
+ verbose_name="If NO, what is the profession of the person who earns the highest income?",
171
+ ),
172
+ ),
173
+ migrations.AlterField(
174
+ model_name="healtheconomics",
175
+ name="locale_created",
176
+ field=models.CharField(
177
+ blank=True,
178
+ default="",
179
+ help_text="Auto-updated by Modeladmin",
180
+ max_length=10,
181
+ verbose_name="Locale created",
182
+ ),
183
+ ),
184
+ migrations.AlterField(
185
+ model_name="healtheconomics",
186
+ name="locale_modified",
187
+ field=models.CharField(
188
+ blank=True,
189
+ default="",
190
+ help_text="Auto-updated by Modeladmin",
191
+ max_length=10,
192
+ verbose_name="Locale modified",
193
+ ),
194
+ ),
195
+ migrations.AlterField(
196
+ model_name="healtheconomics",
197
+ name="report_datetime",
198
+ field=models.DateTimeField(
199
+ default=django.utils.timezone.now,
200
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
201
+ validators=[
202
+ edc_protocol.validators.datetime_not_before_study_start,
203
+ edc_model.validators.date.datetime_not_future,
204
+ ],
205
+ verbose_name="Report Date",
206
+ ),
207
+ ),
208
+ migrations.AlterField(
209
+ model_name="healtheconomics",
210
+ name="revision",
211
+ field=django_revision.revision_field.RevisionField(
212
+ blank=True,
213
+ default="",
214
+ editable=False,
215
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
216
+ max_length=75,
217
+ verbose_name="Revision",
218
+ ),
219
+ ),
220
+ migrations.AlterField(
221
+ model_name="healtheconomics",
222
+ name="routine_activities_other",
223
+ field=models.CharField(
224
+ blank=True,
225
+ default="",
226
+ max_length=50,
227
+ verbose_name="If OTHER, please specify",
228
+ ),
229
+ ),
230
+ migrations.AlterField(
231
+ model_name="healtheconomicssimple",
232
+ name="consent_model",
233
+ field=models.CharField(blank=True, default="", max_length=50),
234
+ ),
235
+ migrations.AlterField(
236
+ model_name="healtheconomicssimple",
237
+ name="consent_version",
238
+ field=models.CharField(blank=True, default="", max_length=10),
239
+ ),
240
+ migrations.AlterField(
241
+ model_name="healtheconomicssimple",
242
+ name="crf_status_comments",
243
+ field=models.TextField(
244
+ blank=True,
245
+ default="",
246
+ help_text="for example, why some data is still pending",
247
+ verbose_name="Any comments related to status of this CRF",
248
+ ),
249
+ ),
250
+ migrations.AlterField(
251
+ model_name="healtheconomicssimple",
252
+ name="device_created",
253
+ field=models.CharField(
254
+ blank=True, default="", max_length=10, verbose_name="Device created"
255
+ ),
256
+ ),
257
+ migrations.AlterField(
258
+ model_name="healtheconomicssimple",
259
+ name="device_modified",
260
+ field=models.CharField(
261
+ blank=True, default="", max_length=10, verbose_name="Device modified"
262
+ ),
263
+ ),
264
+ migrations.AlterField(
265
+ model_name="healtheconomicssimple",
266
+ name="education_certificate",
267
+ field=models.CharField(
268
+ choices=[
269
+ ("primary", "Primary Certificate"),
270
+ ("secondary", "Secondary Certificate"),
271
+ ("tertiary", "post-Secondary/Tertiary/College"),
272
+ ("OTHER", "Other, specify ..."),
273
+ ("N/A", "Not applicable, never went to school"),
274
+ ],
275
+ default="",
276
+ max_length=50,
277
+ verbose_name="What is your highest education certificate?",
278
+ ),
279
+ ),
280
+ migrations.AlterField(
281
+ model_name="healtheconomicssimple",
282
+ name="education_certificate_tertiary",
283
+ field=models.CharField(
284
+ blank=True,
285
+ default="",
286
+ max_length=50,
287
+ verbose_name="If your highest education certificate above is `Tertiary`, what type of tertiary certificate?",
288
+ ),
289
+ ),
290
+ migrations.AlterField(
291
+ model_name="healtheconomicssimple",
292
+ name="locale_created",
293
+ field=models.CharField(
294
+ blank=True,
295
+ default="",
296
+ help_text="Auto-updated by Modeladmin",
297
+ max_length=10,
298
+ verbose_name="Locale created",
299
+ ),
300
+ ),
301
+ migrations.AlterField(
302
+ model_name="healtheconomicssimple",
303
+ name="locale_modified",
304
+ field=models.CharField(
305
+ blank=True,
306
+ default="",
307
+ help_text="Auto-updated by Modeladmin",
308
+ max_length=10,
309
+ verbose_name="Locale modified",
310
+ ),
311
+ ),
312
+ migrations.AlterField(
313
+ model_name="healtheconomicssimple",
314
+ name="report_datetime",
315
+ field=models.DateTimeField(
316
+ default=django.utils.timezone.now,
317
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
318
+ validators=[
319
+ edc_protocol.validators.datetime_not_before_study_start,
320
+ edc_model.validators.date.datetime_not_future,
321
+ ],
322
+ verbose_name="Report Date",
323
+ ),
324
+ ),
325
+ migrations.AlterField(
326
+ model_name="healtheconomicssimple",
327
+ name="revision",
328
+ field=django_revision.revision_field.RevisionField(
329
+ blank=True,
330
+ default="",
331
+ editable=False,
332
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
333
+ max_length=75,
334
+ verbose_name="Revision",
335
+ ),
336
+ ),
337
+ migrations.AlterField(
338
+ model_name="healtheconomicsupdate",
339
+ name="consent_model",
340
+ field=models.CharField(blank=True, default="", max_length=50),
341
+ ),
342
+ migrations.AlterField(
343
+ model_name="healtheconomicsupdate",
344
+ name="consent_version",
345
+ field=models.CharField(blank=True, default="", max_length=10),
346
+ ),
347
+ migrations.AlterField(
348
+ model_name="healtheconomicsupdate",
349
+ name="crf_status_comments",
350
+ field=models.TextField(
351
+ blank=True,
352
+ default="",
353
+ help_text="for example, why some data is still pending",
354
+ verbose_name="Any comments related to status of this CRF",
355
+ ),
356
+ ),
357
+ migrations.AlterField(
358
+ model_name="healtheconomicsupdate",
359
+ name="device_created",
360
+ field=models.CharField(
361
+ blank=True, default="", max_length=10, verbose_name="Device created"
362
+ ),
363
+ ),
364
+ migrations.AlterField(
365
+ model_name="healtheconomicsupdate",
366
+ name="device_modified",
367
+ field=models.CharField(
368
+ blank=True, default="", max_length=10, verbose_name="Device modified"
369
+ ),
370
+ ),
371
+ migrations.AlterField(
372
+ model_name="healtheconomicsupdate",
373
+ name="locale_created",
374
+ field=models.CharField(
375
+ blank=True,
376
+ default="",
377
+ help_text="Auto-updated by Modeladmin",
378
+ max_length=10,
379
+ verbose_name="Locale created",
380
+ ),
381
+ ),
382
+ migrations.AlterField(
383
+ model_name="healtheconomicsupdate",
384
+ name="locale_modified",
385
+ field=models.CharField(
386
+ blank=True,
387
+ default="",
388
+ help_text="Auto-updated by Modeladmin",
389
+ max_length=10,
390
+ verbose_name="Locale modified",
391
+ ),
392
+ ),
393
+ migrations.AlterField(
394
+ model_name="healtheconomicsupdate",
395
+ name="relationship_to_hoh_other",
396
+ field=edc_model_fields.fields.other_charfield.OtherCharField(
397
+ blank=True,
398
+ default="",
399
+ max_length=35,
400
+ verbose_name="If OTHER relationship, specify ...",
401
+ ),
402
+ ),
403
+ migrations.AlterField(
404
+ model_name="healtheconomicsupdate",
405
+ name="report_datetime",
406
+ field=models.DateTimeField(
407
+ default=django.utils.timezone.now,
408
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
409
+ validators=[
410
+ edc_protocol.validators.datetime_not_before_study_start,
411
+ edc_model.validators.date.datetime_not_future,
412
+ ],
413
+ verbose_name="Report Date",
414
+ ),
415
+ ),
416
+ migrations.AlterField(
417
+ model_name="healtheconomicsupdate",
418
+ name="revision",
419
+ field=django_revision.revision_field.RevisionField(
420
+ blank=True,
421
+ default="",
422
+ editable=False,
423
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
424
+ max_length=75,
425
+ verbose_name="Revision",
426
+ ),
427
+ ),
428
+ migrations.AlterField(
429
+ model_name="hepatitistest",
430
+ name="consent_model",
431
+ field=models.CharField(blank=True, default="", max_length=50),
432
+ ),
433
+ migrations.AlterField(
434
+ model_name="hepatitistest",
435
+ name="consent_version",
436
+ field=models.CharField(blank=True, default="", max_length=10),
437
+ ),
438
+ migrations.AlterField(
439
+ model_name="hepatitistest",
440
+ name="crf_status_comments",
441
+ field=models.TextField(
442
+ blank=True,
443
+ default="",
444
+ help_text="for example, why some data is still pending",
445
+ verbose_name="Any comments related to status of this CRF",
446
+ ),
447
+ ),
448
+ migrations.AlterField(
449
+ model_name="hepatitistest",
450
+ name="device_created",
451
+ field=models.CharField(
452
+ blank=True, default="", max_length=10, verbose_name="Device created"
453
+ ),
454
+ ),
455
+ migrations.AlterField(
456
+ model_name="hepatitistest",
457
+ name="device_modified",
458
+ field=models.CharField(
459
+ blank=True, default="", max_length=10, verbose_name="Device modified"
460
+ ),
461
+ ),
462
+ migrations.AlterField(
463
+ model_name="hepatitistest",
464
+ name="hbsag",
465
+ field=models.CharField(
466
+ blank=True,
467
+ choices=[
468
+ ("POS", "Positive"),
469
+ ("NEG", "Negative"),
470
+ ("IND", "Indeterminate"),
471
+ ],
472
+ default="",
473
+ max_length=15,
474
+ verbose_name="<u>HbSAg</u>",
475
+ ),
476
+ ),
477
+ migrations.AlterField(
478
+ model_name="hepatitistest",
479
+ name="hcv",
480
+ field=models.CharField(
481
+ blank=True,
482
+ choices=[
483
+ ("POS", "Positive"),
484
+ ("NEG", "Negative"),
485
+ ("IND", "Indeterminate"),
486
+ ],
487
+ default="",
488
+ max_length=15,
489
+ verbose_name="<u>HCV</u>",
490
+ ),
491
+ ),
492
+ migrations.AlterField(
493
+ model_name="hepatitistest",
494
+ name="locale_created",
495
+ field=models.CharField(
496
+ blank=True,
497
+ default="",
498
+ help_text="Auto-updated by Modeladmin",
499
+ max_length=10,
500
+ verbose_name="Locale created",
501
+ ),
502
+ ),
503
+ migrations.AlterField(
504
+ model_name="hepatitistest",
505
+ name="locale_modified",
506
+ field=models.CharField(
507
+ blank=True,
508
+ default="",
509
+ help_text="Auto-updated by Modeladmin",
510
+ max_length=10,
511
+ verbose_name="Locale modified",
512
+ ),
513
+ ),
514
+ migrations.AlterField(
515
+ model_name="hepatitistest",
516
+ name="report_datetime",
517
+ field=models.DateTimeField(
518
+ default=django.utils.timezone.now,
519
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
520
+ validators=[
521
+ edc_protocol.validators.datetime_not_before_study_start,
522
+ edc_model.validators.date.datetime_not_future,
523
+ ],
524
+ verbose_name="Report Date",
525
+ ),
526
+ ),
527
+ migrations.AlterField(
528
+ model_name="hepatitistest",
529
+ name="revision",
530
+ field=django_revision.revision_field.RevisionField(
531
+ blank=True,
532
+ default="",
533
+ editable=False,
534
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
535
+ max_length=75,
536
+ verbose_name="Revision",
537
+ ),
538
+ ),
539
+ migrations.AlterField(
540
+ model_name="historicalbirthoutcomes",
541
+ name="consent_model",
542
+ field=models.CharField(blank=True, default="", max_length=50),
543
+ ),
544
+ migrations.AlterField(
545
+ model_name="historicalbirthoutcomes",
546
+ name="consent_version",
547
+ field=models.CharField(blank=True, default="", max_length=10),
548
+ ),
549
+ migrations.AlterField(
550
+ model_name="historicalbirthoutcomes",
551
+ name="crf_status_comments",
552
+ field=models.TextField(
553
+ blank=True,
554
+ default="",
555
+ help_text="for example, why some data is still pending",
556
+ verbose_name="Any comments related to status of this CRF",
557
+ ),
558
+ ),
559
+ migrations.AlterField(
560
+ model_name="historicalbirthoutcomes",
561
+ name="device_created",
562
+ field=models.CharField(
563
+ blank=True, default="", max_length=10, verbose_name="Device created"
564
+ ),
565
+ ),
566
+ migrations.AlterField(
567
+ model_name="historicalbirthoutcomes",
568
+ name="device_modified",
569
+ field=models.CharField(
570
+ blank=True, default="", max_length=10, verbose_name="Device modified"
571
+ ),
572
+ ),
573
+ migrations.AlterField(
574
+ model_name="historicalbirthoutcomes",
575
+ name="locale_created",
576
+ field=models.CharField(
577
+ blank=True,
578
+ default="",
579
+ help_text="Auto-updated by Modeladmin",
580
+ max_length=10,
581
+ verbose_name="Locale created",
582
+ ),
583
+ ),
584
+ migrations.AlterField(
585
+ model_name="historicalbirthoutcomes",
586
+ name="locale_modified",
587
+ field=models.CharField(
588
+ blank=True,
589
+ default="",
590
+ help_text="Auto-updated by Modeladmin",
591
+ max_length=10,
592
+ verbose_name="Locale modified",
593
+ ),
594
+ ),
595
+ migrations.AlterField(
596
+ model_name="historicalbirthoutcomes",
597
+ name="revision",
598
+ field=django_revision.revision_field.RevisionField(
599
+ blank=True,
600
+ default="",
601
+ editable=False,
602
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
603
+ max_length=75,
604
+ verbose_name="Revision",
605
+ ),
606
+ ),
607
+ migrations.AlterField(
608
+ model_name="historicalbloodresultsfbc",
609
+ name="abnormal_summary",
610
+ field=models.TextField(blank=True, default=""),
611
+ ),
612
+ migrations.AlterField(
613
+ model_name="historicalbloodresultsfbc",
614
+ name="action_identifier",
615
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
616
+ ),
617
+ migrations.AlterField(
618
+ model_name="historicalbloodresultsfbc",
619
+ name="action_item_reason",
620
+ field=models.TextField(default="", editable=False),
621
+ ),
622
+ migrations.AlterField(
623
+ model_name="historicalbloodresultsfbc",
624
+ name="consent_model",
625
+ field=models.CharField(blank=True, default="", max_length=50),
626
+ ),
627
+ migrations.AlterField(
628
+ model_name="historicalbloodresultsfbc",
629
+ name="consent_version",
630
+ field=models.CharField(blank=True, default="", max_length=10),
631
+ ),
632
+ migrations.AlterField(
633
+ model_name="historicalbloodresultsfbc",
634
+ name="crf_status_comments",
635
+ field=models.TextField(
636
+ blank=True,
637
+ default="",
638
+ help_text="for example, why some data is still pending",
639
+ verbose_name="Any comments related to status of this CRF",
640
+ ),
641
+ ),
642
+ migrations.AlterField(
643
+ model_name="historicalbloodresultsfbc",
644
+ name="device_created",
645
+ field=models.CharField(
646
+ blank=True, default="", max_length=10, verbose_name="Device created"
647
+ ),
648
+ ),
649
+ migrations.AlterField(
650
+ model_name="historicalbloodresultsfbc",
651
+ name="device_modified",
652
+ field=models.CharField(
653
+ blank=True, default="", max_length=10, verbose_name="Device modified"
654
+ ),
655
+ ),
656
+ migrations.AlterField(
657
+ model_name="historicalbloodresultsfbc",
658
+ name="errors",
659
+ field=models.TextField(blank=True, default=""),
660
+ ),
661
+ migrations.AlterField(
662
+ model_name="historicalbloodresultsfbc",
663
+ name="locale_created",
664
+ field=models.CharField(
665
+ blank=True,
666
+ default="",
667
+ help_text="Auto-updated by Modeladmin",
668
+ max_length=10,
669
+ verbose_name="Locale created",
670
+ ),
671
+ ),
672
+ migrations.AlterField(
673
+ model_name="historicalbloodresultsfbc",
674
+ name="locale_modified",
675
+ field=models.CharField(
676
+ blank=True,
677
+ default="",
678
+ help_text="Auto-updated by Modeladmin",
679
+ max_length=10,
680
+ verbose_name="Locale modified",
681
+ ),
682
+ ),
683
+ migrations.AlterField(
684
+ model_name="historicalbloodresultsfbc",
685
+ name="missing",
686
+ field=models.TextField(
687
+ default="",
688
+ editable=False,
689
+ help_text="calculated string of field names that have been left blank",
690
+ ),
691
+ ),
692
+ migrations.AlterField(
693
+ model_name="historicalbloodresultsfbc",
694
+ name="parent_action_identifier",
695
+ field=models.CharField(
696
+ blank=True,
697
+ default="",
698
+ help_text="action identifier that links to parent reference model instance.",
699
+ max_length=30,
700
+ ),
701
+ ),
702
+ migrations.AlterField(
703
+ model_name="historicalbloodresultsfbc",
704
+ name="related_action_identifier",
705
+ field=models.CharField(
706
+ blank=True,
707
+ default="",
708
+ help_text="action identifier that links to related reference model instance.",
709
+ max_length=30,
710
+ ),
711
+ ),
712
+ migrations.AlterField(
713
+ model_name="historicalbloodresultsfbc",
714
+ name="report_datetime",
715
+ field=models.DateTimeField(
716
+ default=django.utils.timezone.now,
717
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
718
+ validators=[
719
+ edc_protocol.validators.datetime_not_before_study_start,
720
+ edc_model.validators.date.datetime_not_future,
721
+ ],
722
+ verbose_name="Report Date",
723
+ ),
724
+ ),
725
+ migrations.AlterField(
726
+ model_name="historicalbloodresultsfbc",
727
+ name="reportable_summary",
728
+ field=models.TextField(blank=True, default=""),
729
+ ),
730
+ migrations.AlterField(
731
+ model_name="historicalbloodresultsfbc",
732
+ name="revision",
733
+ field=django_revision.revision_field.RevisionField(
734
+ blank=True,
735
+ default="",
736
+ editable=False,
737
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
738
+ max_length=75,
739
+ verbose_name="Revision",
740
+ ),
741
+ ),
742
+ migrations.AlterField(
743
+ model_name="historicalbloodresultsfbc",
744
+ name="summary",
745
+ field=models.TextField(blank=True, default=""),
746
+ ),
747
+ migrations.AlterField(
748
+ model_name="historicalbloodresultsgludummy",
749
+ name="abnormal_summary",
750
+ field=models.TextField(blank=True, default=""),
751
+ ),
752
+ migrations.AlterField(
753
+ model_name="historicalbloodresultsgludummy",
754
+ name="action_identifier",
755
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
756
+ ),
757
+ migrations.AlterField(
758
+ model_name="historicalbloodresultsgludummy",
759
+ name="action_item_reason",
760
+ field=models.TextField(default="", editable=False),
761
+ ),
762
+ migrations.AlterField(
763
+ model_name="historicalbloodresultsgludummy",
764
+ name="consent_model",
765
+ field=models.CharField(blank=True, default="", max_length=50),
766
+ ),
767
+ migrations.AlterField(
768
+ model_name="historicalbloodresultsgludummy",
769
+ name="consent_version",
770
+ field=models.CharField(blank=True, default="", max_length=10),
771
+ ),
772
+ migrations.AlterField(
773
+ model_name="historicalbloodresultsgludummy",
774
+ name="crf_status_comments",
775
+ field=models.TextField(
776
+ blank=True,
777
+ default="",
778
+ help_text="for example, why some data is still pending",
779
+ verbose_name="Any comments related to status of this CRF",
780
+ ),
781
+ ),
782
+ migrations.AlterField(
783
+ model_name="historicalbloodresultsgludummy",
784
+ name="device_created",
785
+ field=models.CharField(
786
+ blank=True, default="", max_length=10, verbose_name="Device created"
787
+ ),
788
+ ),
789
+ migrations.AlterField(
790
+ model_name="historicalbloodresultsgludummy",
791
+ name="device_modified",
792
+ field=models.CharField(
793
+ blank=True, default="", max_length=10, verbose_name="Device modified"
794
+ ),
795
+ ),
796
+ migrations.AlterField(
797
+ model_name="historicalbloodresultsgludummy",
798
+ name="errors",
799
+ field=models.TextField(blank=True, default=""),
800
+ ),
801
+ migrations.AlterField(
802
+ model_name="historicalbloodresultsgludummy",
803
+ name="fasting",
804
+ field=models.CharField(
805
+ choices=[("fasting", "Fasting"), ("non_fasting", "Non-fasting")],
806
+ default="",
807
+ max_length=25,
808
+ verbose_name="Was this fasting or non-fasting?",
809
+ ),
810
+ ),
811
+ migrations.AlterField(
812
+ model_name="historicalbloodresultsgludummy",
813
+ name="is_poc",
814
+ field=models.CharField(
815
+ choices=[("Yes", "Yes"), ("No", "No")],
816
+ default="",
817
+ max_length=15,
818
+ verbose_name="Was a point-of-care test used?",
819
+ ),
820
+ ),
821
+ migrations.AlterField(
822
+ model_name="historicalbloodresultsgludummy",
823
+ name="locale_created",
824
+ field=models.CharField(
825
+ blank=True,
826
+ default="",
827
+ help_text="Auto-updated by Modeladmin",
828
+ max_length=10,
829
+ verbose_name="Locale created",
830
+ ),
831
+ ),
832
+ migrations.AlterField(
833
+ model_name="historicalbloodresultsgludummy",
834
+ name="locale_modified",
835
+ field=models.CharField(
836
+ blank=True,
837
+ default="",
838
+ help_text="Auto-updated by Modeladmin",
839
+ max_length=10,
840
+ verbose_name="Locale modified",
841
+ ),
842
+ ),
843
+ migrations.AlterField(
844
+ model_name="historicalbloodresultsgludummy",
845
+ name="missing",
846
+ field=models.TextField(
847
+ default="",
848
+ editable=False,
849
+ help_text="calculated string of field names that have been left blank",
850
+ ),
851
+ ),
852
+ migrations.AlterField(
853
+ model_name="historicalbloodresultsgludummy",
854
+ name="parent_action_identifier",
855
+ field=models.CharField(
856
+ blank=True,
857
+ default="",
858
+ help_text="action identifier that links to parent reference model instance.",
859
+ max_length=30,
860
+ ),
861
+ ),
862
+ migrations.AlterField(
863
+ model_name="historicalbloodresultsgludummy",
864
+ name="related_action_identifier",
865
+ field=models.CharField(
866
+ blank=True,
867
+ default="",
868
+ help_text="action identifier that links to related reference model instance.",
869
+ max_length=30,
870
+ ),
871
+ ),
872
+ migrations.AlterField(
873
+ model_name="historicalbloodresultsgludummy",
874
+ name="report_datetime",
875
+ field=models.DateTimeField(
876
+ default=django.utils.timezone.now,
877
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
878
+ validators=[
879
+ edc_protocol.validators.datetime_not_before_study_start,
880
+ edc_model.validators.date.datetime_not_future,
881
+ ],
882
+ verbose_name="Report Date",
883
+ ),
884
+ ),
885
+ migrations.AlterField(
886
+ model_name="historicalbloodresultsgludummy",
887
+ name="reportable_summary",
888
+ field=models.TextField(blank=True, default=""),
889
+ ),
890
+ migrations.AlterField(
891
+ model_name="historicalbloodresultsgludummy",
892
+ name="revision",
893
+ field=django_revision.revision_field.RevisionField(
894
+ blank=True,
895
+ default="",
896
+ editable=False,
897
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
898
+ max_length=75,
899
+ verbose_name="Revision",
900
+ ),
901
+ ),
902
+ migrations.AlterField(
903
+ model_name="historicalbloodresultsgludummy",
904
+ name="summary",
905
+ field=models.TextField(blank=True, default=""),
906
+ ),
907
+ migrations.AlterField(
908
+ model_name="historicalbloodresultshba1c",
909
+ name="abnormal_summary",
910
+ field=models.TextField(blank=True, default=""),
911
+ ),
912
+ migrations.AlterField(
913
+ model_name="historicalbloodresultshba1c",
914
+ name="action_identifier",
915
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
916
+ ),
917
+ migrations.AlterField(
918
+ model_name="historicalbloodresultshba1c",
919
+ name="action_item_reason",
920
+ field=models.TextField(default="", editable=False),
921
+ ),
922
+ migrations.AlterField(
923
+ model_name="historicalbloodresultshba1c",
924
+ name="consent_model",
925
+ field=models.CharField(blank=True, default="", max_length=50),
926
+ ),
927
+ migrations.AlterField(
928
+ model_name="historicalbloodresultshba1c",
929
+ name="consent_version",
930
+ field=models.CharField(blank=True, default="", max_length=10),
931
+ ),
932
+ migrations.AlterField(
933
+ model_name="historicalbloodresultshba1c",
934
+ name="crf_status_comments",
935
+ field=models.TextField(
936
+ blank=True,
937
+ default="",
938
+ help_text="for example, why some data is still pending",
939
+ verbose_name="Any comments related to status of this CRF",
940
+ ),
941
+ ),
942
+ migrations.AlterField(
943
+ model_name="historicalbloodresultshba1c",
944
+ name="device_created",
945
+ field=models.CharField(
946
+ blank=True, default="", max_length=10, verbose_name="Device created"
947
+ ),
948
+ ),
949
+ migrations.AlterField(
950
+ model_name="historicalbloodresultshba1c",
951
+ name="device_modified",
952
+ field=models.CharField(
953
+ blank=True, default="", max_length=10, verbose_name="Device modified"
954
+ ),
955
+ ),
956
+ migrations.AlterField(
957
+ model_name="historicalbloodresultshba1c",
958
+ name="errors",
959
+ field=models.TextField(blank=True, default=""),
960
+ ),
961
+ migrations.AlterField(
962
+ model_name="historicalbloodresultshba1c",
963
+ name="hba1c_abnormal",
964
+ field=models.CharField(
965
+ blank=True,
966
+ choices=[("Yes", "Yes"), ("No", "No")],
967
+ default="",
968
+ max_length=25,
969
+ verbose_name="abnormal",
970
+ ),
971
+ ),
972
+ migrations.AlterField(
973
+ model_name="historicalbloodresultshba1c",
974
+ name="hba1c_quantifier",
975
+ field=models.CharField(
976
+ default="=",
977
+ editable=False,
978
+ max_length=10,
979
+ verbose_name="HbA1c quantifier",
980
+ ),
981
+ ),
982
+ migrations.AlterField(
983
+ model_name="historicalbloodresultshba1c",
984
+ name="hba1c_reportable",
985
+ field=models.CharField(
986
+ blank=True,
987
+ choices=[
988
+ ("N/A", "Not applicable"),
989
+ ("3", "Yes, grade 3"),
990
+ ("4", "Yes, grade 4"),
991
+ ("No", "Not reportable"),
992
+ ("Already reported", "Already reported"),
993
+ ("present_at_baseline", "Present at baseline"),
994
+ ],
995
+ default="",
996
+ max_length=25,
997
+ verbose_name="reportable",
998
+ ),
999
+ ),
1000
+ migrations.AlterField(
1001
+ model_name="historicalbloodresultshba1c",
1002
+ name="hba1c_units",
1003
+ field=models.CharField(
1004
+ blank=True, default="%", max_length=15, verbose_name="HbA1c units"
1005
+ ),
1006
+ ),
1007
+ migrations.AlterField(
1008
+ model_name="historicalbloodresultshba1c",
1009
+ name="hba1c_value",
1010
+ field=models.DecimalField(
1011
+ blank=True,
1012
+ decimal_places=2,
1013
+ help_text="In percent. A `HIGH` reading may be entered as 9999.99",
1014
+ max_digits=8,
1015
+ null=True,
1016
+ verbose_name="HbA1c value",
1017
+ ),
1018
+ ),
1019
+ migrations.AlterField(
1020
+ model_name="historicalbloodresultshba1c",
1021
+ name="is_poc",
1022
+ field=models.CharField(
1023
+ choices=[("Yes", "Yes"), ("No", "No")],
1024
+ default="",
1025
+ max_length=15,
1026
+ verbose_name="Was a point-of-care test used?",
1027
+ ),
1028
+ ),
1029
+ migrations.AlterField(
1030
+ model_name="historicalbloodresultshba1c",
1031
+ name="locale_created",
1032
+ field=models.CharField(
1033
+ blank=True,
1034
+ default="",
1035
+ help_text="Auto-updated by Modeladmin",
1036
+ max_length=10,
1037
+ verbose_name="Locale created",
1038
+ ),
1039
+ ),
1040
+ migrations.AlterField(
1041
+ model_name="historicalbloodresultshba1c",
1042
+ name="locale_modified",
1043
+ field=models.CharField(
1044
+ blank=True,
1045
+ default="",
1046
+ help_text="Auto-updated by Modeladmin",
1047
+ max_length=10,
1048
+ verbose_name="Locale modified",
1049
+ ),
1050
+ ),
1051
+ migrations.AlterField(
1052
+ model_name="historicalbloodresultshba1c",
1053
+ name="missing",
1054
+ field=models.TextField(
1055
+ default="",
1056
+ editable=False,
1057
+ help_text="calculated string of field names that have been left blank",
1058
+ ),
1059
+ ),
1060
+ migrations.AlterField(
1061
+ model_name="historicalbloodresultshba1c",
1062
+ name="parent_action_identifier",
1063
+ field=models.CharField(
1064
+ blank=True,
1065
+ default="",
1066
+ help_text="action identifier that links to parent reference model instance.",
1067
+ max_length=30,
1068
+ ),
1069
+ ),
1070
+ migrations.AlterField(
1071
+ model_name="historicalbloodresultshba1c",
1072
+ name="related_action_identifier",
1073
+ field=models.CharField(
1074
+ blank=True,
1075
+ default="",
1076
+ help_text="action identifier that links to related reference model instance.",
1077
+ max_length=30,
1078
+ ),
1079
+ ),
1080
+ migrations.AlterField(
1081
+ model_name="historicalbloodresultshba1c",
1082
+ name="report_datetime",
1083
+ field=models.DateTimeField(
1084
+ default=django.utils.timezone.now,
1085
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1086
+ validators=[
1087
+ edc_protocol.validators.datetime_not_before_study_start,
1088
+ edc_model.validators.date.datetime_not_future,
1089
+ ],
1090
+ verbose_name="Report Date",
1091
+ ),
1092
+ ),
1093
+ migrations.AlterField(
1094
+ model_name="historicalbloodresultshba1c",
1095
+ name="reportable_summary",
1096
+ field=models.TextField(blank=True, default=""),
1097
+ ),
1098
+ migrations.AlterField(
1099
+ model_name="historicalbloodresultshba1c",
1100
+ name="revision",
1101
+ field=django_revision.revision_field.RevisionField(
1102
+ blank=True,
1103
+ default="",
1104
+ editable=False,
1105
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1106
+ max_length=75,
1107
+ verbose_name="Revision",
1108
+ ),
1109
+ ),
1110
+ migrations.AlterField(
1111
+ model_name="historicalbloodresultshba1c",
1112
+ name="summary",
1113
+ field=models.TextField(blank=True, default=""),
1114
+ ),
1115
+ migrations.AlterField(
1116
+ model_name="historicalbloodresultsins",
1117
+ name="abnormal_summary",
1118
+ field=models.TextField(blank=True, default=""),
1119
+ ),
1120
+ migrations.AlterField(
1121
+ model_name="historicalbloodresultsins",
1122
+ name="action_identifier",
1123
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
1124
+ ),
1125
+ migrations.AlterField(
1126
+ model_name="historicalbloodresultsins",
1127
+ name="action_item_reason",
1128
+ field=models.TextField(default="", editable=False),
1129
+ ),
1130
+ migrations.AlterField(
1131
+ model_name="historicalbloodresultsins",
1132
+ name="consent_model",
1133
+ field=models.CharField(blank=True, default="", max_length=50),
1134
+ ),
1135
+ migrations.AlterField(
1136
+ model_name="historicalbloodresultsins",
1137
+ name="consent_version",
1138
+ field=models.CharField(blank=True, default="", max_length=10),
1139
+ ),
1140
+ migrations.AlterField(
1141
+ model_name="historicalbloodresultsins",
1142
+ name="crf_status_comments",
1143
+ field=models.TextField(
1144
+ blank=True,
1145
+ default="",
1146
+ help_text="for example, why some data is still pending",
1147
+ verbose_name="Any comments related to status of this CRF",
1148
+ ),
1149
+ ),
1150
+ migrations.AlterField(
1151
+ model_name="historicalbloodresultsins",
1152
+ name="device_created",
1153
+ field=models.CharField(
1154
+ blank=True, default="", max_length=10, verbose_name="Device created"
1155
+ ),
1156
+ ),
1157
+ migrations.AlterField(
1158
+ model_name="historicalbloodresultsins",
1159
+ name="device_modified",
1160
+ field=models.CharField(
1161
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1162
+ ),
1163
+ ),
1164
+ migrations.AlterField(
1165
+ model_name="historicalbloodresultsins",
1166
+ name="errors",
1167
+ field=models.TextField(blank=True, default=""),
1168
+ ),
1169
+ migrations.AlterField(
1170
+ model_name="historicalbloodresultsins",
1171
+ name="locale_created",
1172
+ field=models.CharField(
1173
+ blank=True,
1174
+ default="",
1175
+ help_text="Auto-updated by Modeladmin",
1176
+ max_length=10,
1177
+ verbose_name="Locale created",
1178
+ ),
1179
+ ),
1180
+ migrations.AlterField(
1181
+ model_name="historicalbloodresultsins",
1182
+ name="locale_modified",
1183
+ field=models.CharField(
1184
+ blank=True,
1185
+ default="",
1186
+ help_text="Auto-updated by Modeladmin",
1187
+ max_length=10,
1188
+ verbose_name="Locale modified",
1189
+ ),
1190
+ ),
1191
+ migrations.AlterField(
1192
+ model_name="historicalbloodresultsins",
1193
+ name="missing",
1194
+ field=models.TextField(
1195
+ default="",
1196
+ editable=False,
1197
+ help_text="calculated string of field names that have been left blank",
1198
+ ),
1199
+ ),
1200
+ migrations.AlterField(
1201
+ model_name="historicalbloodresultsins",
1202
+ name="parent_action_identifier",
1203
+ field=models.CharField(
1204
+ blank=True,
1205
+ default="",
1206
+ help_text="action identifier that links to parent reference model instance.",
1207
+ max_length=30,
1208
+ ),
1209
+ ),
1210
+ migrations.AlterField(
1211
+ model_name="historicalbloodresultsins",
1212
+ name="related_action_identifier",
1213
+ field=models.CharField(
1214
+ blank=True,
1215
+ default="",
1216
+ help_text="action identifier that links to related reference model instance.",
1217
+ max_length=30,
1218
+ ),
1219
+ ),
1220
+ migrations.AlterField(
1221
+ model_name="historicalbloodresultsins",
1222
+ name="report_datetime",
1223
+ field=models.DateTimeField(
1224
+ default=django.utils.timezone.now,
1225
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1226
+ validators=[
1227
+ edc_protocol.validators.datetime_not_before_study_start,
1228
+ edc_model.validators.date.datetime_not_future,
1229
+ ],
1230
+ verbose_name="Report Date",
1231
+ ),
1232
+ ),
1233
+ migrations.AlterField(
1234
+ model_name="historicalbloodresultsins",
1235
+ name="reportable_summary",
1236
+ field=models.TextField(blank=True, default=""),
1237
+ ),
1238
+ migrations.AlterField(
1239
+ model_name="historicalbloodresultsins",
1240
+ name="revision",
1241
+ field=django_revision.revision_field.RevisionField(
1242
+ blank=True,
1243
+ default="",
1244
+ editable=False,
1245
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1246
+ max_length=75,
1247
+ verbose_name="Revision",
1248
+ ),
1249
+ ),
1250
+ migrations.AlterField(
1251
+ model_name="historicalbloodresultsins",
1252
+ name="summary",
1253
+ field=models.TextField(blank=True, default=""),
1254
+ ),
1255
+ migrations.AlterField(
1256
+ model_name="historicalbloodresultslft",
1257
+ name="abnormal_summary",
1258
+ field=models.TextField(blank=True, default=""),
1259
+ ),
1260
+ migrations.AlterField(
1261
+ model_name="historicalbloodresultslft",
1262
+ name="action_identifier",
1263
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
1264
+ ),
1265
+ migrations.AlterField(
1266
+ model_name="historicalbloodresultslft",
1267
+ name="action_item_reason",
1268
+ field=models.TextField(default="", editable=False),
1269
+ ),
1270
+ migrations.AlterField(
1271
+ model_name="historicalbloodresultslft",
1272
+ name="consent_model",
1273
+ field=models.CharField(blank=True, default="", max_length=50),
1274
+ ),
1275
+ migrations.AlterField(
1276
+ model_name="historicalbloodresultslft",
1277
+ name="consent_version",
1278
+ field=models.CharField(blank=True, default="", max_length=10),
1279
+ ),
1280
+ migrations.AlterField(
1281
+ model_name="historicalbloodresultslft",
1282
+ name="crf_status_comments",
1283
+ field=models.TextField(
1284
+ blank=True,
1285
+ default="",
1286
+ help_text="for example, why some data is still pending",
1287
+ verbose_name="Any comments related to status of this CRF",
1288
+ ),
1289
+ ),
1290
+ migrations.AlterField(
1291
+ model_name="historicalbloodresultslft",
1292
+ name="device_created",
1293
+ field=models.CharField(
1294
+ blank=True, default="", max_length=10, verbose_name="Device created"
1295
+ ),
1296
+ ),
1297
+ migrations.AlterField(
1298
+ model_name="historicalbloodresultslft",
1299
+ name="device_modified",
1300
+ field=models.CharField(
1301
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1302
+ ),
1303
+ ),
1304
+ migrations.AlterField(
1305
+ model_name="historicalbloodresultslft",
1306
+ name="errors",
1307
+ field=models.TextField(blank=True, default=""),
1308
+ ),
1309
+ migrations.AlterField(
1310
+ model_name="historicalbloodresultslft",
1311
+ name="locale_created",
1312
+ field=models.CharField(
1313
+ blank=True,
1314
+ default="",
1315
+ help_text="Auto-updated by Modeladmin",
1316
+ max_length=10,
1317
+ verbose_name="Locale created",
1318
+ ),
1319
+ ),
1320
+ migrations.AlterField(
1321
+ model_name="historicalbloodresultslft",
1322
+ name="locale_modified",
1323
+ field=models.CharField(
1324
+ blank=True,
1325
+ default="",
1326
+ help_text="Auto-updated by Modeladmin",
1327
+ max_length=10,
1328
+ verbose_name="Locale modified",
1329
+ ),
1330
+ ),
1331
+ migrations.AlterField(
1332
+ model_name="historicalbloodresultslft",
1333
+ name="missing",
1334
+ field=models.TextField(
1335
+ default="",
1336
+ editable=False,
1337
+ help_text="calculated string of field names that have been left blank",
1338
+ ),
1339
+ ),
1340
+ migrations.AlterField(
1341
+ model_name="historicalbloodresultslft",
1342
+ name="parent_action_identifier",
1343
+ field=models.CharField(
1344
+ blank=True,
1345
+ default="",
1346
+ help_text="action identifier that links to parent reference model instance.",
1347
+ max_length=30,
1348
+ ),
1349
+ ),
1350
+ migrations.AlterField(
1351
+ model_name="historicalbloodresultslft",
1352
+ name="related_action_identifier",
1353
+ field=models.CharField(
1354
+ blank=True,
1355
+ default="",
1356
+ help_text="action identifier that links to related reference model instance.",
1357
+ max_length=30,
1358
+ ),
1359
+ ),
1360
+ migrations.AlterField(
1361
+ model_name="historicalbloodresultslft",
1362
+ name="report_datetime",
1363
+ field=models.DateTimeField(
1364
+ default=django.utils.timezone.now,
1365
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1366
+ validators=[
1367
+ edc_protocol.validators.datetime_not_before_study_start,
1368
+ edc_model.validators.date.datetime_not_future,
1369
+ ],
1370
+ verbose_name="Report Date",
1371
+ ),
1372
+ ),
1373
+ migrations.AlterField(
1374
+ model_name="historicalbloodresultslft",
1375
+ name="reportable_summary",
1376
+ field=models.TextField(blank=True, default=""),
1377
+ ),
1378
+ migrations.AlterField(
1379
+ model_name="historicalbloodresultslft",
1380
+ name="revision",
1381
+ field=django_revision.revision_field.RevisionField(
1382
+ blank=True,
1383
+ default="",
1384
+ editable=False,
1385
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1386
+ max_length=75,
1387
+ verbose_name="Revision",
1388
+ ),
1389
+ ),
1390
+ migrations.AlterField(
1391
+ model_name="historicalbloodresultslft",
1392
+ name="summary",
1393
+ field=models.TextField(blank=True, default=""),
1394
+ ),
1395
+ migrations.AlterField(
1396
+ model_name="historicalbloodresultslipids",
1397
+ name="abnormal_summary",
1398
+ field=models.TextField(blank=True, default=""),
1399
+ ),
1400
+ migrations.AlterField(
1401
+ model_name="historicalbloodresultslipids",
1402
+ name="action_identifier",
1403
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
1404
+ ),
1405
+ migrations.AlterField(
1406
+ model_name="historicalbloodresultslipids",
1407
+ name="action_item_reason",
1408
+ field=models.TextField(default="", editable=False),
1409
+ ),
1410
+ migrations.AlterField(
1411
+ model_name="historicalbloodresultslipids",
1412
+ name="consent_model",
1413
+ field=models.CharField(blank=True, default="", max_length=50),
1414
+ ),
1415
+ migrations.AlterField(
1416
+ model_name="historicalbloodresultslipids",
1417
+ name="consent_version",
1418
+ field=models.CharField(blank=True, default="", max_length=10),
1419
+ ),
1420
+ migrations.AlterField(
1421
+ model_name="historicalbloodresultslipids",
1422
+ name="crf_status_comments",
1423
+ field=models.TextField(
1424
+ blank=True,
1425
+ default="",
1426
+ help_text="for example, why some data is still pending",
1427
+ verbose_name="Any comments related to status of this CRF",
1428
+ ),
1429
+ ),
1430
+ migrations.AlterField(
1431
+ model_name="historicalbloodresultslipids",
1432
+ name="device_created",
1433
+ field=models.CharField(
1434
+ blank=True, default="", max_length=10, verbose_name="Device created"
1435
+ ),
1436
+ ),
1437
+ migrations.AlterField(
1438
+ model_name="historicalbloodresultslipids",
1439
+ name="device_modified",
1440
+ field=models.CharField(
1441
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1442
+ ),
1443
+ ),
1444
+ migrations.AlterField(
1445
+ model_name="historicalbloodresultslipids",
1446
+ name="errors",
1447
+ field=models.TextField(blank=True, default=""),
1448
+ ),
1449
+ migrations.AlterField(
1450
+ model_name="historicalbloodresultslipids",
1451
+ name="locale_created",
1452
+ field=models.CharField(
1453
+ blank=True,
1454
+ default="",
1455
+ help_text="Auto-updated by Modeladmin",
1456
+ max_length=10,
1457
+ verbose_name="Locale created",
1458
+ ),
1459
+ ),
1460
+ migrations.AlterField(
1461
+ model_name="historicalbloodresultslipids",
1462
+ name="locale_modified",
1463
+ field=models.CharField(
1464
+ blank=True,
1465
+ default="",
1466
+ help_text="Auto-updated by Modeladmin",
1467
+ max_length=10,
1468
+ verbose_name="Locale modified",
1469
+ ),
1470
+ ),
1471
+ migrations.AlterField(
1472
+ model_name="historicalbloodresultslipids",
1473
+ name="missing",
1474
+ field=models.TextField(
1475
+ default="",
1476
+ editable=False,
1477
+ help_text="calculated string of field names that have been left blank",
1478
+ ),
1479
+ ),
1480
+ migrations.AlterField(
1481
+ model_name="historicalbloodresultslipids",
1482
+ name="parent_action_identifier",
1483
+ field=models.CharField(
1484
+ blank=True,
1485
+ default="",
1486
+ help_text="action identifier that links to parent reference model instance.",
1487
+ max_length=30,
1488
+ ),
1489
+ ),
1490
+ migrations.AlterField(
1491
+ model_name="historicalbloodresultslipids",
1492
+ name="related_action_identifier",
1493
+ field=models.CharField(
1494
+ blank=True,
1495
+ default="",
1496
+ help_text="action identifier that links to related reference model instance.",
1497
+ max_length=30,
1498
+ ),
1499
+ ),
1500
+ migrations.AlterField(
1501
+ model_name="historicalbloodresultslipids",
1502
+ name="report_datetime",
1503
+ field=models.DateTimeField(
1504
+ default=django.utils.timezone.now,
1505
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1506
+ validators=[
1507
+ edc_protocol.validators.datetime_not_before_study_start,
1508
+ edc_model.validators.date.datetime_not_future,
1509
+ ],
1510
+ verbose_name="Report Date",
1511
+ ),
1512
+ ),
1513
+ migrations.AlterField(
1514
+ model_name="historicalbloodresultslipids",
1515
+ name="reportable_summary",
1516
+ field=models.TextField(blank=True, default=""),
1517
+ ),
1518
+ migrations.AlterField(
1519
+ model_name="historicalbloodresultslipids",
1520
+ name="revision",
1521
+ field=django_revision.revision_field.RevisionField(
1522
+ blank=True,
1523
+ default="",
1524
+ editable=False,
1525
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1526
+ max_length=75,
1527
+ verbose_name="Revision",
1528
+ ),
1529
+ ),
1530
+ migrations.AlterField(
1531
+ model_name="historicalbloodresultslipids",
1532
+ name="summary",
1533
+ field=models.TextField(blank=True, default=""),
1534
+ ),
1535
+ migrations.AlterField(
1536
+ model_name="historicalbloodresultsrft",
1537
+ name="abnormal_summary",
1538
+ field=models.TextField(blank=True, default=""),
1539
+ ),
1540
+ migrations.AlterField(
1541
+ model_name="historicalbloodresultsrft",
1542
+ name="action_identifier",
1543
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
1544
+ ),
1545
+ migrations.AlterField(
1546
+ model_name="historicalbloodresultsrft",
1547
+ name="action_item_reason",
1548
+ field=models.TextField(default="", editable=False),
1549
+ ),
1550
+ migrations.AlterField(
1551
+ model_name="historicalbloodresultsrft",
1552
+ name="consent_model",
1553
+ field=models.CharField(blank=True, default="", max_length=50),
1554
+ ),
1555
+ migrations.AlterField(
1556
+ model_name="historicalbloodresultsrft",
1557
+ name="consent_version",
1558
+ field=models.CharField(blank=True, default="", max_length=10),
1559
+ ),
1560
+ migrations.AlterField(
1561
+ model_name="historicalbloodresultsrft",
1562
+ name="crf_status_comments",
1563
+ field=models.TextField(
1564
+ blank=True,
1565
+ default="",
1566
+ help_text="for example, why some data is still pending",
1567
+ verbose_name="Any comments related to status of this CRF",
1568
+ ),
1569
+ ),
1570
+ migrations.AlterField(
1571
+ model_name="historicalbloodresultsrft",
1572
+ name="device_created",
1573
+ field=models.CharField(
1574
+ blank=True, default="", max_length=10, verbose_name="Device created"
1575
+ ),
1576
+ ),
1577
+ migrations.AlterField(
1578
+ model_name="historicalbloodresultsrft",
1579
+ name="device_modified",
1580
+ field=models.CharField(
1581
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1582
+ ),
1583
+ ),
1584
+ migrations.AlterField(
1585
+ model_name="historicalbloodresultsrft",
1586
+ name="errors",
1587
+ field=models.TextField(blank=True, default=""),
1588
+ ),
1589
+ migrations.AlterField(
1590
+ model_name="historicalbloodresultsrft",
1591
+ name="locale_created",
1592
+ field=models.CharField(
1593
+ blank=True,
1594
+ default="",
1595
+ help_text="Auto-updated by Modeladmin",
1596
+ max_length=10,
1597
+ verbose_name="Locale created",
1598
+ ),
1599
+ ),
1600
+ migrations.AlterField(
1601
+ model_name="historicalbloodresultsrft",
1602
+ name="locale_modified",
1603
+ field=models.CharField(
1604
+ blank=True,
1605
+ default="",
1606
+ help_text="Auto-updated by Modeladmin",
1607
+ max_length=10,
1608
+ verbose_name="Locale modified",
1609
+ ),
1610
+ ),
1611
+ migrations.AlterField(
1612
+ model_name="historicalbloodresultsrft",
1613
+ name="missing",
1614
+ field=models.TextField(
1615
+ default="",
1616
+ editable=False,
1617
+ help_text="calculated string of field names that have been left blank",
1618
+ ),
1619
+ ),
1620
+ migrations.AlterField(
1621
+ model_name="historicalbloodresultsrft",
1622
+ name="parent_action_identifier",
1623
+ field=models.CharField(
1624
+ blank=True,
1625
+ default="",
1626
+ help_text="action identifier that links to parent reference model instance.",
1627
+ max_length=30,
1628
+ ),
1629
+ ),
1630
+ migrations.AlterField(
1631
+ model_name="historicalbloodresultsrft",
1632
+ name="related_action_identifier",
1633
+ field=models.CharField(
1634
+ blank=True,
1635
+ default="",
1636
+ help_text="action identifier that links to related reference model instance.",
1637
+ max_length=30,
1638
+ ),
1639
+ ),
1640
+ migrations.AlterField(
1641
+ model_name="historicalbloodresultsrft",
1642
+ name="report_datetime",
1643
+ field=models.DateTimeField(
1644
+ default=django.utils.timezone.now,
1645
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1646
+ validators=[
1647
+ edc_protocol.validators.datetime_not_before_study_start,
1648
+ edc_model.validators.date.datetime_not_future,
1649
+ ],
1650
+ verbose_name="Report Date",
1651
+ ),
1652
+ ),
1653
+ migrations.AlterField(
1654
+ model_name="historicalbloodresultsrft",
1655
+ name="reportable_summary",
1656
+ field=models.TextField(blank=True, default=""),
1657
+ ),
1658
+ migrations.AlterField(
1659
+ model_name="historicalbloodresultsrft",
1660
+ name="revision",
1661
+ field=django_revision.revision_field.RevisionField(
1662
+ blank=True,
1663
+ default="",
1664
+ editable=False,
1665
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1666
+ max_length=75,
1667
+ verbose_name="Revision",
1668
+ ),
1669
+ ),
1670
+ migrations.AlterField(
1671
+ model_name="historicalbloodresultsrft",
1672
+ name="summary",
1673
+ field=models.TextField(blank=True, default=""),
1674
+ ),
1675
+ migrations.AlterField(
1676
+ model_name="historicalcomplications",
1677
+ name="consent_model",
1678
+ field=models.CharField(blank=True, default="", max_length=50),
1679
+ ),
1680
+ migrations.AlterField(
1681
+ model_name="historicalcomplications",
1682
+ name="consent_version",
1683
+ field=models.CharField(blank=True, default="", max_length=10),
1684
+ ),
1685
+ migrations.AlterField(
1686
+ model_name="historicalcomplications",
1687
+ name="crf_status_comments",
1688
+ field=models.TextField(
1689
+ blank=True,
1690
+ default="",
1691
+ help_text="for example, why some data is still pending",
1692
+ verbose_name="Any comments related to status of this CRF",
1693
+ ),
1694
+ ),
1695
+ migrations.AlterField(
1696
+ model_name="historicalcomplications",
1697
+ name="device_created",
1698
+ field=models.CharField(
1699
+ blank=True, default="", max_length=10, verbose_name="Device created"
1700
+ ),
1701
+ ),
1702
+ migrations.AlterField(
1703
+ model_name="historicalcomplications",
1704
+ name="device_modified",
1705
+ field=models.CharField(
1706
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1707
+ ),
1708
+ ),
1709
+ migrations.AlterField(
1710
+ model_name="historicalcomplications",
1711
+ name="locale_created",
1712
+ field=models.CharField(
1713
+ blank=True,
1714
+ default="",
1715
+ help_text="Auto-updated by Modeladmin",
1716
+ max_length=10,
1717
+ verbose_name="Locale created",
1718
+ ),
1719
+ ),
1720
+ migrations.AlterField(
1721
+ model_name="historicalcomplications",
1722
+ name="locale_modified",
1723
+ field=models.CharField(
1724
+ blank=True,
1725
+ default="",
1726
+ help_text="Auto-updated by Modeladmin",
1727
+ max_length=10,
1728
+ verbose_name="Locale modified",
1729
+ ),
1730
+ ),
1731
+ migrations.AlterField(
1732
+ model_name="historicalcomplications",
1733
+ name="report_datetime",
1734
+ field=models.DateTimeField(
1735
+ default=django.utils.timezone.now,
1736
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1737
+ validators=[
1738
+ edc_protocol.validators.datetime_not_before_study_start,
1739
+ edc_model.validators.date.datetime_not_future,
1740
+ ],
1741
+ verbose_name="Report Date",
1742
+ ),
1743
+ ),
1744
+ migrations.AlterField(
1745
+ model_name="historicalcomplications",
1746
+ name="revision",
1747
+ field=django_revision.revision_field.RevisionField(
1748
+ blank=True,
1749
+ default="",
1750
+ editable=False,
1751
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1752
+ max_length=75,
1753
+ verbose_name="Revision",
1754
+ ),
1755
+ ),
1756
+ migrations.AlterField(
1757
+ model_name="historicalcomplicationsglycemia",
1758
+ name="consent_model",
1759
+ field=models.CharField(blank=True, default="", max_length=50),
1760
+ ),
1761
+ migrations.AlterField(
1762
+ model_name="historicalcomplicationsglycemia",
1763
+ name="consent_version",
1764
+ field=models.CharField(blank=True, default="", max_length=10),
1765
+ ),
1766
+ migrations.AlterField(
1767
+ model_name="historicalcomplicationsglycemia",
1768
+ name="crf_status_comments",
1769
+ field=models.TextField(
1770
+ blank=True,
1771
+ default="",
1772
+ help_text="for example, why some data is still pending",
1773
+ verbose_name="Any comments related to status of this CRF",
1774
+ ),
1775
+ ),
1776
+ migrations.AlterField(
1777
+ model_name="historicalcomplicationsglycemia",
1778
+ name="device_created",
1779
+ field=models.CharField(
1780
+ blank=True, default="", max_length=10, verbose_name="Device created"
1781
+ ),
1782
+ ),
1783
+ migrations.AlterField(
1784
+ model_name="historicalcomplicationsglycemia",
1785
+ name="device_modified",
1786
+ field=models.CharField(
1787
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1788
+ ),
1789
+ ),
1790
+ migrations.AlterField(
1791
+ model_name="historicalcomplicationsglycemia",
1792
+ name="locale_created",
1793
+ field=models.CharField(
1794
+ blank=True,
1795
+ default="",
1796
+ help_text="Auto-updated by Modeladmin",
1797
+ max_length=10,
1798
+ verbose_name="Locale created",
1799
+ ),
1800
+ ),
1801
+ migrations.AlterField(
1802
+ model_name="historicalcomplicationsglycemia",
1803
+ name="locale_modified",
1804
+ field=models.CharField(
1805
+ blank=True,
1806
+ default="",
1807
+ help_text="Auto-updated by Modeladmin",
1808
+ max_length=10,
1809
+ verbose_name="Locale modified",
1810
+ ),
1811
+ ),
1812
+ migrations.AlterField(
1813
+ model_name="historicalcomplicationsglycemia",
1814
+ name="report_datetime",
1815
+ field=models.DateTimeField(
1816
+ default=django.utils.timezone.now,
1817
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1818
+ validators=[
1819
+ edc_protocol.validators.datetime_not_before_study_start,
1820
+ edc_model.validators.date.datetime_not_future,
1821
+ ],
1822
+ verbose_name="Report Date",
1823
+ ),
1824
+ ),
1825
+ migrations.AlterField(
1826
+ model_name="historicalcomplicationsglycemia",
1827
+ name="revision",
1828
+ field=django_revision.revision_field.RevisionField(
1829
+ blank=True,
1830
+ default="",
1831
+ editable=False,
1832
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1833
+ max_length=75,
1834
+ verbose_name="Revision",
1835
+ ),
1836
+ ),
1837
+ migrations.AlterField(
1838
+ model_name="historicalconcomitantmedication",
1839
+ name="consent_model",
1840
+ field=models.CharField(blank=True, default="", max_length=50),
1841
+ ),
1842
+ migrations.AlterField(
1843
+ model_name="historicalconcomitantmedication",
1844
+ name="consent_version",
1845
+ field=models.CharField(blank=True, default="", max_length=10),
1846
+ ),
1847
+ migrations.AlterField(
1848
+ model_name="historicalconcomitantmedication",
1849
+ name="crf_status_comments",
1850
+ field=models.TextField(
1851
+ blank=True,
1852
+ default="",
1853
+ help_text="for example, why some data is still pending",
1854
+ verbose_name="Any comments related to status of this CRF",
1855
+ ),
1856
+ ),
1857
+ migrations.AlterField(
1858
+ model_name="historicalconcomitantmedication",
1859
+ name="device_created",
1860
+ field=models.CharField(
1861
+ blank=True, default="", max_length=10, verbose_name="Device created"
1862
+ ),
1863
+ ),
1864
+ migrations.AlterField(
1865
+ model_name="historicalconcomitantmedication",
1866
+ name="device_modified",
1867
+ field=models.CharField(
1868
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1869
+ ),
1870
+ ),
1871
+ migrations.AlterField(
1872
+ model_name="historicalconcomitantmedication",
1873
+ name="locale_created",
1874
+ field=models.CharField(
1875
+ blank=True,
1876
+ default="",
1877
+ help_text="Auto-updated by Modeladmin",
1878
+ max_length=10,
1879
+ verbose_name="Locale created",
1880
+ ),
1881
+ ),
1882
+ migrations.AlterField(
1883
+ model_name="historicalconcomitantmedication",
1884
+ name="locale_modified",
1885
+ field=models.CharField(
1886
+ blank=True,
1887
+ default="",
1888
+ help_text="Auto-updated by Modeladmin",
1889
+ max_length=10,
1890
+ verbose_name="Locale modified",
1891
+ ),
1892
+ ),
1893
+ migrations.AlterField(
1894
+ model_name="historicalconcomitantmedication",
1895
+ name="report_datetime",
1896
+ field=models.DateTimeField(
1897
+ default=django.utils.timezone.now,
1898
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1899
+ validators=[
1900
+ edc_protocol.validators.datetime_not_before_study_start,
1901
+ edc_model.validators.date.datetime_not_future,
1902
+ ],
1903
+ verbose_name="Report Date",
1904
+ ),
1905
+ ),
1906
+ migrations.AlterField(
1907
+ model_name="historicalconcomitantmedication",
1908
+ name="revision",
1909
+ field=django_revision.revision_field.RevisionField(
1910
+ blank=True,
1911
+ default="",
1912
+ editable=False,
1913
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1914
+ max_length=75,
1915
+ verbose_name="Revision",
1916
+ ),
1917
+ ),
1918
+ ]