clinicedc 2.0.11__py3-none-any.whl → 2.0.13__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 clinicedc might be problematic. Click here for more details.

Files changed (137) hide show
  1. {clinicedc-2.0.11.dist-info → clinicedc-2.0.13.dist-info}/METADATA +2 -1
  2. {clinicedc-2.0.11.dist-info → clinicedc-2.0.13.dist-info}/RECORD +137 -24
  3. edc_action_item/migrations/0017_auto_20190305_0123.py +1 -1
  4. edc_action_item/migrations/0030_edcpermissions.py +1 -1
  5. edc_action_item/migrations/0041_alter_actionitem_revision_alter_actiontype_revision_and_more.py +86 -0
  6. edc_adverse_event/migrations/0001_initial.py +1 -1
  7. edc_adverse_event/migrations/0002_auto_20190802_0059.py +1 -1
  8. edc_adverse_event/migrations/0008_auto_20220825_0451.py +1 -1
  9. edc_adverse_event/migrations/0009_auto_20220907_0157.py +1 -1
  10. edc_adverse_event/migrations/0017_alter_aeactionclassification_revision_and_more.py +77 -0
  11. edc_adverse_event/model_mixins/hospitaization/hospitalization_model_mixin.py +1 -3
  12. edc_analytics/__init__.py +3 -0
  13. edc_analytics/apps.py +8 -0
  14. edc_analytics/constants.py +26 -0
  15. edc_analytics/custom_tables/__init__.py +11 -0
  16. edc_analytics/custom_tables/age.py +72 -0
  17. edc_analytics/custom_tables/art.py +88 -0
  18. edc_analytics/custom_tables/bmi.py +125 -0
  19. edc_analytics/custom_tables/bp.py +103 -0
  20. edc_analytics/custom_tables/fasting.py +126 -0
  21. edc_analytics/custom_tables/fbg.py +98 -0
  22. edc_analytics/custom_tables/fbg_ogtt.py +384 -0
  23. edc_analytics/custom_tables/gender.py +12 -0
  24. edc_analytics/custom_tables/hba1c.py +87 -0
  25. edc_analytics/custom_tables/ogtt.py +95 -0
  26. edc_analytics/custom_tables/waist.py +105 -0
  27. edc_analytics/data.py +36 -0
  28. edc_analytics/row/__init__.py +4 -0
  29. edc_analytics/row/row_definition.py +43 -0
  30. edc_analytics/row/row_definitions.py +32 -0
  31. edc_analytics/row/row_statistics.py +88 -0
  32. edc_analytics/row/row_statistics_with_gender.py +115 -0
  33. edc_analytics/stata/__init__.py +1 -0
  34. edc_analytics/stata/get_stata_labels_from_model.py +44 -0
  35. edc_analytics/styler.py +93 -0
  36. edc_analytics/table.py +108 -0
  37. edc_analytics/urls.py +6 -0
  38. edc_appointment/migrations/0018_auto_20190305_0123.py +1 -1
  39. edc_appointment/migrations/0051_alter_appointment_revision_and_more.py +38 -0
  40. edc_auth/migrations/0001_squashed_0033_alter_userprofile_is_multisite_viewer.py +1 -1
  41. edc_auth/migrations/0012_auto_20191026_0034.py +1 -1
  42. edc_auth/migrations/0013_auto_20191026_0055.py +1 -1
  43. edc_auth/migrations/0025_permissions.py +1 -1
  44. edc_auth/migrations/0037_alter_edcpermissions_revision_alter_role_revision.py +38 -0
  45. edc_consent/migrations/0001_initial.py +1 -1
  46. edc_consent/migrations/0007_alter_edcpermissions_revision.py +26 -0
  47. edc_crf/migrations/0010_alter_crfstatus_revision.py +26 -0
  48. edc_dashboard/migrations/0001_initial.py +1 -1
  49. edc_dashboard/migrations/0007_alter_edcpermissions_revision.py +26 -0
  50. edc_data_manager/migrations/0001_initial.py +1 -1
  51. edc_data_manager/migrations/0025_edcpermissions.py +1 -1
  52. edc_data_manager/migrations/0042_alter_datadictionary_revision_and_more.py +98 -0
  53. edc_dx/__init__.py +6 -0
  54. edc_dx/apps.py +5 -0
  55. edc_dx/diagnoses.py +250 -0
  56. edc_dx/form_validators/__init__.py +2 -0
  57. edc_dx/form_validators/diagnosis_form_validator_mixin.py +54 -0
  58. edc_dx/form_validators/result_form_validator_mixin.py +65 -0
  59. edc_dx/utils.py +42 -0
  60. edc_dx_review/__init__.py +0 -0
  61. edc_dx_review/apps.py +5 -0
  62. edc_dx_review/auth_objects.py +13 -0
  63. edc_dx_review/auths.py +12 -0
  64. edc_dx_review/choices.py +24 -0
  65. edc_dx_review/constants.py +7 -0
  66. edc_dx_review/fieldsets.py +47 -0
  67. edc_dx_review/form_mixins/__init__.py +3 -0
  68. edc_dx_review/form_mixins/clinical_review_baseline_required_form_mixin.py +25 -0
  69. edc_dx_review/form_validator_mixins/__init__.py +6 -0
  70. edc_dx_review/form_validator_mixins/clinical_review_baseline_form_validator_mixin.py +7 -0
  71. edc_dx_review/form_validator_mixins/clinical_review_followup_form_validator_mixin.py +25 -0
  72. edc_dx_review/list_data.py +19 -0
  73. edc_dx_review/medical_date.py +195 -0
  74. edc_dx_review/migrations/0001_initial.py +307 -0
  75. edc_dx_review/migrations/0002_diagnosislocations_extra_value_and_more.py +32 -0
  76. edc_dx_review/migrations/0003_alter_diagnosislocations_options_and_more.py +148 -0
  77. edc_dx_review/migrations/0004_remove_diagnosislocations_edc_dx_revi_name_a39b40_idx_and_more.py +20 -0
  78. edc_dx_review/migrations/__init__.py +0 -0
  79. edc_dx_review/model_mixins/__init__.py +20 -0
  80. edc_dx_review/model_mixins/clinical_review_baseline_model_mixin.py +25 -0
  81. edc_dx_review/model_mixins/clinical_review_followup/__init__.py +5 -0
  82. edc_dx_review/model_mixins/clinical_review_followup/clinical_review_followup_chol_model_mixin.py +54 -0
  83. edc_dx_review/model_mixins/clinical_review_followup/clinical_review_followup_dm_model_mixin.py +54 -0
  84. edc_dx_review/model_mixins/clinical_review_followup/clinical_review_followup_hiv_model_mixin.py +54 -0
  85. edc_dx_review/model_mixins/clinical_review_followup/clinical_review_followup_htn_model_mixin.py +56 -0
  86. edc_dx_review/model_mixins/clinical_review_followup/clinical_review_followup_model_mixin.py +25 -0
  87. edc_dx_review/model_mixins/dx_location_model_mixin.py +17 -0
  88. edc_dx_review/model_mixins/factory/__init__.py +4 -0
  89. edc_dx_review/model_mixins/factory/baseline_review_model_mixin_factory.py +55 -0
  90. edc_dx_review/model_mixins/factory/calculate_date.py +43 -0
  91. edc_dx_review/model_mixins/factory/dx_initial_review_model_mixin_factory.py +97 -0
  92. edc_dx_review/model_mixins/factory/followup_review_model_mixin_factory.py +39 -0
  93. edc_dx_review/model_mixins/factory/rx_initial_review_model_mixin_factory.py +69 -0
  94. edc_dx_review/model_mixins/followup_review/__init__.py +2 -0
  95. edc_dx_review/model_mixins/followup_review/followup_review_model_mixin.py +22 -0
  96. edc_dx_review/model_mixins/followup_review/hiv_followup_review_model_mixin.py +32 -0
  97. edc_dx_review/model_mixins/initial_review/__init__.py +6 -0
  98. edc_dx_review/model_mixins/initial_review/chol_initial_review_model_mixin.py +34 -0
  99. edc_dx_review/model_mixins/initial_review/hiv_initial_model_mixins.py +119 -0
  100. edc_dx_review/model_mixins/initial_review/ncd_initial_review_model_mixin.py +42 -0
  101. edc_dx_review/models.py +20 -0
  102. edc_dx_review/radio_fields.py +30 -0
  103. edc_dx_review/utils.py +220 -0
  104. edc_export/migrations/0004_auto_20190305_0123.py +1 -1
  105. edc_export/migrations/0013_edcpermissions.py +1 -1
  106. edc_export/migrations/0024_alter_datarequest_revision_and_more.py +170 -0
  107. edc_facility/migrations/0005_healthfacility_healthfacilitytypes_and_more.py +1 -1
  108. edc_facility/migrations/0018_alter_healthfacility_revision_and_more.py +38 -0
  109. edc_form_runners/migrations/0006_alter_issue_revision.py +26 -0
  110. edc_identifier/migrations/0012_alter_identifiermodel_revision.py +26 -0
  111. edc_lab/migrations/0039_alter_aliquot_revision_alter_box_revision_and_more.py +269 -0
  112. edc_lab_dashboard/migrations/0006_alter_edcpermissions_revision.py +26 -0
  113. edc_label/migrations/0008_alter_zpllabeltemplates_revision.py +26 -0
  114. edc_listboard/migrations/0008_alter_listboard_revision.py +26 -0
  115. edc_locator/migrations/0042_alter_historicalsubjectlocator_revision_and_more.py +38 -0
  116. edc_metadata/migrations/0032_alter_crfmetadata_revision_and_more.py +38 -0
  117. edc_navbar/migrations/0010_alter_edcpermissions_revision.py +26 -0
  118. edc_notification/migrations/0012_alter_notification_revision.py +26 -0
  119. edc_offstudy/migrations/0025_alter_historicalsubjectoffstudy_revision_and_more.py +41 -0
  120. edc_pharmacy/migrations/0091_alter_allocation_revision_alter_assignment_revision_and_more.py +794 -0
  121. edc_protocol_incident/migrations/0026_alter_historicalprotocoldeviationviolation_revision_and_more.py +65 -0
  122. edc_pylabels/migrations/0014_alter_labelconfiguration_revision.py +26 -0
  123. edc_qareports/migrations/0021_alter_edcpermissions_revision_alter_note_revision.py +38 -0
  124. edc_randomization/migrations/0015_alter_edcpermissions_revision_and_more.py +50 -0
  125. edc_refusal/migrations/0014_alter_historicalsubjectrefusal_revision_and_more.py +38 -0
  126. edc_registration/migrations/0034_alter_historicalregisteredsubject_revision_and_more.py +41 -0
  127. edc_reportable/migrations/0008_alter_gradingdata_revision_and_more.py +110 -0
  128. edc_review_dashboard/migrations/0007_alter_edcpermissions_revision.py +26 -0
  129. edc_screening/migrations/0006_alter_edcpermissions_revision.py +26 -0
  130. edc_sites/migrations/0011_alter_edcpermissions_revision.py +26 -0
  131. edc_subject_dashboard/migrations/0006_alter_edcpermissions_revision.py +26 -0
  132. edc_unblinding/migrations/0016_alter_historicalunblindingrequest_revision_and_more.py +65 -0
  133. edc_visit_schedule/migrations/0021_alter_historicalonschedule_revision_and_more.py +89 -0
  134. edc_visit_tracking/migrations/0011_alter_historicalsubjectvisit_revision_and_more.py +65 -0
  135. edc_vitals/model_mixins/blood_pressure_model_mixin.py +1 -0
  136. {clinicedc-2.0.11.dist-info → clinicedc-2.0.13.dist-info}/WHEEL +0 -0
  137. {clinicedc-2.0.11.dist-info → clinicedc-2.0.13.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,170 @@
1
+ # Generated by Django 5.2.6 on 2025-09-24 04:56
2
+
3
+ import django_revision.revision_field
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("edc_export", "0023_alter_datarequesthistory_archive_filename_and_more"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="datarequest",
16
+ name="revision",
17
+ field=django_revision.revision_field.RevisionField(
18
+ blank=True,
19
+ default="",
20
+ editable=False,
21
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
22
+ max_length=75,
23
+ verbose_name="Revision",
24
+ ),
25
+ ),
26
+ migrations.AlterField(
27
+ model_name="datarequesthistory",
28
+ name="revision",
29
+ field=django_revision.revision_field.RevisionField(
30
+ blank=True,
31
+ default="",
32
+ editable=False,
33
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
34
+ max_length=75,
35
+ verbose_name="Revision",
36
+ ),
37
+ ),
38
+ migrations.AlterField(
39
+ model_name="edcpermissions",
40
+ name="revision",
41
+ field=django_revision.revision_field.RevisionField(
42
+ blank=True,
43
+ default="",
44
+ editable=False,
45
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
46
+ max_length=75,
47
+ verbose_name="Revision",
48
+ ),
49
+ ),
50
+ migrations.AlterField(
51
+ model_name="exportreceipt",
52
+ name="revision",
53
+ field=django_revision.revision_field.RevisionField(
54
+ blank=True,
55
+ default="",
56
+ editable=False,
57
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
58
+ max_length=75,
59
+ verbose_name="Revision",
60
+ ),
61
+ ),
62
+ migrations.AlterField(
63
+ model_name="filehistory",
64
+ name="revision",
65
+ field=django_revision.revision_field.RevisionField(
66
+ blank=True,
67
+ default="",
68
+ editable=False,
69
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
70
+ max_length=75,
71
+ verbose_name="Revision",
72
+ ),
73
+ ),
74
+ migrations.AlterField(
75
+ model_name="historicaldatarequest",
76
+ name="revision",
77
+ field=django_revision.revision_field.RevisionField(
78
+ blank=True,
79
+ default="",
80
+ editable=False,
81
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
82
+ max_length=75,
83
+ verbose_name="Revision",
84
+ ),
85
+ ),
86
+ migrations.AlterField(
87
+ model_name="historicalexportreceipt",
88
+ name="revision",
89
+ field=django_revision.revision_field.RevisionField(
90
+ blank=True,
91
+ default="",
92
+ editable=False,
93
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
94
+ max_length=75,
95
+ verbose_name="Revision",
96
+ ),
97
+ ),
98
+ migrations.AlterField(
99
+ model_name="historicalfilehistory",
100
+ name="revision",
101
+ field=django_revision.revision_field.RevisionField(
102
+ blank=True,
103
+ default="",
104
+ editable=False,
105
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
106
+ max_length=75,
107
+ verbose_name="Revision",
108
+ ),
109
+ ),
110
+ migrations.AlterField(
111
+ model_name="historicalobjecthistory",
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="historicalplan",
124
+ name="revision",
125
+ field=django_revision.revision_field.RevisionField(
126
+ blank=True,
127
+ default="",
128
+ editable=False,
129
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
130
+ max_length=75,
131
+ verbose_name="Revision",
132
+ ),
133
+ ),
134
+ migrations.AlterField(
135
+ model_name="objecthistory",
136
+ name="revision",
137
+ field=django_revision.revision_field.RevisionField(
138
+ blank=True,
139
+ default="",
140
+ editable=False,
141
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
142
+ max_length=75,
143
+ verbose_name="Revision",
144
+ ),
145
+ ),
146
+ migrations.AlterField(
147
+ model_name="plan",
148
+ name="revision",
149
+ field=django_revision.revision_field.RevisionField(
150
+ blank=True,
151
+ default="",
152
+ editable=False,
153
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
154
+ max_length=75,
155
+ verbose_name="Revision",
156
+ ),
157
+ ),
158
+ migrations.AlterField(
159
+ model_name="uploadexportreceiptfile",
160
+ name="revision",
161
+ field=django_revision.revision_field.RevisionField(
162
+ blank=True,
163
+ default="",
164
+ editable=False,
165
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
166
+ max_length=75,
167
+ verbose_name="Revision",
168
+ ),
169
+ ),
170
+ ]
@@ -8,7 +8,7 @@ import django.db.models.deletion
8
8
  import django_audit_fields.fields.hostname_modification_field
9
9
  import django_audit_fields.fields.userfield
10
10
  import django_audit_fields.fields.uuid_auto_field
11
- import django_audit_fields.models.audit_model_mixin
11
+ import django.utils.timezone
12
12
  import django_revision.revision_field
13
13
  import simple_history.models
14
14
  from django.conf import settings
@@ -0,0 +1,38 @@
1
+ # Generated by Django 5.2.6 on 2025-09-24 04:56
2
+
3
+ import django_revision.revision_field
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("edc_facility", "0017_alter_healthfacility_gps_and_more"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="healthfacility",
16
+ name="revision",
17
+ field=django_revision.revision_field.RevisionField(
18
+ blank=True,
19
+ default="",
20
+ editable=False,
21
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
22
+ max_length=75,
23
+ verbose_name="Revision",
24
+ ),
25
+ ),
26
+ migrations.AlterField(
27
+ model_name="historicalhealthfacility",
28
+ name="revision",
29
+ field=django_revision.revision_field.RevisionField(
30
+ blank=True,
31
+ default="",
32
+ editable=False,
33
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
34
+ max_length=75,
35
+ verbose_name="Revision",
36
+ ),
37
+ ),
38
+ ]
@@ -0,0 +1,26 @@
1
+ # Generated by Django 5.2.6 on 2025-09-24 04:56
2
+
3
+ import django_revision.revision_field
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("edc_form_runners", "0005_alter_issue_device_created_and_more"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="issue",
16
+ name="revision",
17
+ field=django_revision.revision_field.RevisionField(
18
+ blank=True,
19
+ default="",
20
+ editable=False,
21
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
22
+ max_length=75,
23
+ verbose_name="Revision",
24
+ ),
25
+ ),
26
+ ]
@@ -0,0 +1,26 @@
1
+ # Generated by Django 5.2.6 on 2025-09-24 04:56
2
+
3
+ import django_revision.revision_field
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("edc_identifier", "0011_alter_identifiermodel_device_created_and_more"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="identifiermodel",
16
+ name="revision",
17
+ field=django_revision.revision_field.RevisionField(
18
+ blank=True,
19
+ default="",
20
+ editable=False,
21
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
22
+ max_length=75,
23
+ verbose_name="Revision",
24
+ ),
25
+ ),
26
+ ]
@@ -0,0 +1,269 @@
1
+ # Generated by Django 5.2.6 on 2025-09-24 04:56
2
+
3
+ import django_revision.revision_field
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ (
11
+ "edc_lab",
12
+ "0038_alter_aliquot_slug_alter_box_slug_alter_boxitem_slug_and_more",
13
+ ),
14
+ ]
15
+
16
+ operations = [
17
+ migrations.AlterField(
18
+ model_name="aliquot",
19
+ name="revision",
20
+ field=django_revision.revision_field.RevisionField(
21
+ blank=True,
22
+ default="",
23
+ editable=False,
24
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
25
+ max_length=75,
26
+ verbose_name="Revision",
27
+ ),
28
+ ),
29
+ migrations.AlterField(
30
+ model_name="box",
31
+ name="revision",
32
+ field=django_revision.revision_field.RevisionField(
33
+ blank=True,
34
+ default="",
35
+ editable=False,
36
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
37
+ max_length=75,
38
+ verbose_name="Revision",
39
+ ),
40
+ ),
41
+ migrations.AlterField(
42
+ model_name="boxitem",
43
+ name="revision",
44
+ field=django_revision.revision_field.RevisionField(
45
+ blank=True,
46
+ default="",
47
+ editable=False,
48
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
49
+ max_length=75,
50
+ verbose_name="Revision",
51
+ ),
52
+ ),
53
+ migrations.AlterField(
54
+ model_name="boxtype",
55
+ name="revision",
56
+ field=django_revision.revision_field.RevisionField(
57
+ blank=True,
58
+ default="",
59
+ editable=False,
60
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
61
+ max_length=75,
62
+ verbose_name="Revision",
63
+ ),
64
+ ),
65
+ migrations.AlterField(
66
+ model_name="consignee",
67
+ name="revision",
68
+ field=django_revision.revision_field.RevisionField(
69
+ blank=True,
70
+ default="",
71
+ editable=False,
72
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
73
+ max_length=75,
74
+ verbose_name="Revision",
75
+ ),
76
+ ),
77
+ migrations.AlterField(
78
+ model_name="historicalaliquot",
79
+ name="revision",
80
+ field=django_revision.revision_field.RevisionField(
81
+ blank=True,
82
+ default="",
83
+ editable=False,
84
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
85
+ max_length=75,
86
+ verbose_name="Revision",
87
+ ),
88
+ ),
89
+ migrations.AlterField(
90
+ model_name="historicalbox",
91
+ name="revision",
92
+ field=django_revision.revision_field.RevisionField(
93
+ blank=True,
94
+ default="",
95
+ editable=False,
96
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
97
+ max_length=75,
98
+ verbose_name="Revision",
99
+ ),
100
+ ),
101
+ migrations.AlterField(
102
+ model_name="historicalboxitem",
103
+ name="revision",
104
+ field=django_revision.revision_field.RevisionField(
105
+ blank=True,
106
+ default="",
107
+ editable=False,
108
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
109
+ max_length=75,
110
+ verbose_name="Revision",
111
+ ),
112
+ ),
113
+ migrations.AlterField(
114
+ model_name="historicalconsignee",
115
+ name="revision",
116
+ field=django_revision.revision_field.RevisionField(
117
+ blank=True,
118
+ default="",
119
+ editable=False,
120
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
121
+ max_length=75,
122
+ verbose_name="Revision",
123
+ ),
124
+ ),
125
+ migrations.AlterField(
126
+ model_name="historicalmanifest",
127
+ name="revision",
128
+ field=django_revision.revision_field.RevisionField(
129
+ blank=True,
130
+ default="",
131
+ editable=False,
132
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
133
+ max_length=75,
134
+ verbose_name="Revision",
135
+ ),
136
+ ),
137
+ migrations.AlterField(
138
+ model_name="historicalorder",
139
+ name="revision",
140
+ field=django_revision.revision_field.RevisionField(
141
+ blank=True,
142
+ default="",
143
+ editable=False,
144
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
145
+ max_length=75,
146
+ verbose_name="Revision",
147
+ ),
148
+ ),
149
+ migrations.AlterField(
150
+ model_name="historicalresult",
151
+ name="revision",
152
+ field=django_revision.revision_field.RevisionField(
153
+ blank=True,
154
+ default="",
155
+ editable=False,
156
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
157
+ max_length=75,
158
+ verbose_name="Revision",
159
+ ),
160
+ ),
161
+ migrations.AlterField(
162
+ model_name="historicalresultitem",
163
+ name="revision",
164
+ field=django_revision.revision_field.RevisionField(
165
+ blank=True,
166
+ default="",
167
+ editable=False,
168
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
169
+ max_length=75,
170
+ verbose_name="Revision",
171
+ ),
172
+ ),
173
+ migrations.AlterField(
174
+ model_name="historicalshipper",
175
+ name="revision",
176
+ field=django_revision.revision_field.RevisionField(
177
+ blank=True,
178
+ default="",
179
+ editable=False,
180
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
181
+ max_length=75,
182
+ verbose_name="Revision",
183
+ ),
184
+ ),
185
+ migrations.AlterField(
186
+ model_name="manifest",
187
+ name="revision",
188
+ field=django_revision.revision_field.RevisionField(
189
+ blank=True,
190
+ default="",
191
+ editable=False,
192
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
193
+ max_length=75,
194
+ verbose_name="Revision",
195
+ ),
196
+ ),
197
+ migrations.AlterField(
198
+ model_name="manifestitem",
199
+ name="revision",
200
+ field=django_revision.revision_field.RevisionField(
201
+ blank=True,
202
+ default="",
203
+ editable=False,
204
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
205
+ max_length=75,
206
+ verbose_name="Revision",
207
+ ),
208
+ ),
209
+ migrations.AlterField(
210
+ model_name="order",
211
+ name="revision",
212
+ field=django_revision.revision_field.RevisionField(
213
+ blank=True,
214
+ default="",
215
+ editable=False,
216
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
217
+ max_length=75,
218
+ verbose_name="Revision",
219
+ ),
220
+ ),
221
+ migrations.AlterField(
222
+ model_name="panel",
223
+ name="revision",
224
+ field=django_revision.revision_field.RevisionField(
225
+ blank=True,
226
+ default="",
227
+ editable=False,
228
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
229
+ max_length=75,
230
+ verbose_name="Revision",
231
+ ),
232
+ ),
233
+ migrations.AlterField(
234
+ model_name="result",
235
+ name="revision",
236
+ field=django_revision.revision_field.RevisionField(
237
+ blank=True,
238
+ default="",
239
+ editable=False,
240
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
241
+ max_length=75,
242
+ verbose_name="Revision",
243
+ ),
244
+ ),
245
+ migrations.AlterField(
246
+ model_name="resultitem",
247
+ name="revision",
248
+ field=django_revision.revision_field.RevisionField(
249
+ blank=True,
250
+ default="",
251
+ editable=False,
252
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
253
+ max_length=75,
254
+ verbose_name="Revision",
255
+ ),
256
+ ),
257
+ migrations.AlterField(
258
+ model_name="shipper",
259
+ name="revision",
260
+ field=django_revision.revision_field.RevisionField(
261
+ blank=True,
262
+ default="",
263
+ editable=False,
264
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
265
+ max_length=75,
266
+ verbose_name="Revision",
267
+ ),
268
+ ),
269
+ ]
@@ -0,0 +1,26 @@
1
+ # Generated by Django 5.2.6 on 2025-09-24 04:56
2
+
3
+ import django_revision.revision_field
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("edc_lab_dashboard", "0005_alter_edcpermissions_device_created_and_more"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="edcpermissions",
16
+ name="revision",
17
+ field=django_revision.revision_field.RevisionField(
18
+ blank=True,
19
+ default="",
20
+ editable=False,
21
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
22
+ max_length=75,
23
+ verbose_name="Revision",
24
+ ),
25
+ ),
26
+ ]
@@ -0,0 +1,26 @@
1
+ # Generated by Django 5.2.6 on 2025-09-24 04:56
2
+
3
+ import django_revision.revision_field
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("edc_label", "0007_alter_zpllabeltemplates_device_created_and_more"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="zpllabeltemplates",
16
+ name="revision",
17
+ field=django_revision.revision_field.RevisionField(
18
+ blank=True,
19
+ default="",
20
+ editable=False,
21
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
22
+ max_length=75,
23
+ verbose_name="Revision",
24
+ ),
25
+ ),
26
+ ]
@@ -0,0 +1,26 @@
1
+ # Generated by Django 5.2.6 on 2025-09-24 04:56
2
+
3
+ import django_revision.revision_field
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("edc_listboard", "0007_alter_listboard_device_created_and_more"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="listboard",
16
+ name="revision",
17
+ field=django_revision.revision_field.RevisionField(
18
+ blank=True,
19
+ default="",
20
+ editable=False,
21
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
22
+ max_length=75,
23
+ verbose_name="Revision",
24
+ ),
25
+ ),
26
+ ]
@@ -0,0 +1,38 @@
1
+ # Generated by Django 5.2.6 on 2025-09-24 04:56
2
+
3
+ import django_revision.revision_field
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("edc_locator", "0041_alter_historicalsubjectlocator_report_datetime_and_more"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="historicalsubjectlocator",
16
+ name="revision",
17
+ field=django_revision.revision_field.RevisionField(
18
+ blank=True,
19
+ default="",
20
+ editable=False,
21
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
22
+ max_length=75,
23
+ verbose_name="Revision",
24
+ ),
25
+ ),
26
+ migrations.AlterField(
27
+ model_name="subjectlocator",
28
+ name="revision",
29
+ field=django_revision.revision_field.RevisionField(
30
+ blank=True,
31
+ default="",
32
+ editable=False,
33
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
34
+ max_length=75,
35
+ verbose_name="Revision",
36
+ ),
37
+ ),
38
+ ]