-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove edc-reference as a dependency
- Loading branch information
Showing
11 changed files
with
64 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
...ct_subject/migrations/0110_alter_historicalsubjectvisit_assessment_type_other_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Generated by Django 4.2.5 on 2023-10-31 00:51 | ||
|
||
from django.db import migrations | ||
import edc_model_fields.fields.other_charfield | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("effect_subject", "0109_alter_adherence_options_alter_arvhistory_options_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="historicalsubjectvisit", | ||
name="assessment_type_other", | ||
field=edc_model_fields.fields.other_charfield.OtherCharField( | ||
blank=True, | ||
max_length=35, | ||
null=True, | ||
verbose_name="If other, please specify ...", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicalsubjectvisit", | ||
name="assessment_who_other", | ||
field=edc_model_fields.fields.other_charfield.OtherCharField( | ||
blank=True, | ||
max_length=35, | ||
null=True, | ||
verbose_name="If other, please specify ...", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="subjectvisit", | ||
name="assessment_type_other", | ||
field=edc_model_fields.fields.other_charfield.OtherCharField( | ||
blank=True, | ||
max_length=35, | ||
null=True, | ||
verbose_name="If other, please specify ...", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="subjectvisit", | ||
name="assessment_who_other", | ||
field=edc_model_fields.fields.other_charfield.OtherCharField( | ||
blank=True, | ||
max_length=35, | ||
null=True, | ||
verbose_name="If other, please specify ...", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
from edc_lab.managers import RequisitionManager as Manager # noqa | ||
from edc_lab.model_mixins import RequisitionModelMixin | ||
from edc_model import models as edc_models | ||
from edc_reference.model_mixins import ReferenceModelMixin | ||
from edc_model.models import BaseUuidModel | ||
|
||
|
||
class SubjectRequisition(RequisitionModelMixin, ReferenceModelMixin, edc_models.BaseUuidModel): | ||
class Meta(RequisitionModelMixin.Meta, edc_models.BaseUuidModel.Meta): | ||
class SubjectRequisition(RequisitionModelMixin, BaseUuidModel): | ||
class Meta(RequisitionModelMixin.Meta, BaseUuidModel.Meta): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters