-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #509 from UW-GAC/feature/cdsa-requires-study-review
Add a requires_study_review field for DataAffiliateAgreements
- Loading branch information
Showing
25 changed files
with
1,245 additions
and
452 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
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
29 changes: 29 additions & 0 deletions
29
primed/cdsa/migrations/0018_dataaffiliateagreement_requires_study_review_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,29 @@ | ||
# Generated by Django 4.2.10 on 2024-03-15 20:48 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cdsa", "0017_alter_cdsaworkspace_additional_limitations_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="dataaffiliateagreement", | ||
name="requires_study_review", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Indicator of whether indicates investigators need to have an approved PRIMED paper proposal where this dataset was selected and approved in order to work with data brought under this CDSA.", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicaldataaffiliateagreement", | ||
name="requires_study_review", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Indicator of whether indicates investigators need to have an approved PRIMED paper proposal where this dataset was selected and approved in order to work with data brought under this CDSA.", | ||
), | ||
), | ||
] |
29 changes: 29 additions & 0 deletions
29
primed/cdsa/migrations/0019_alter_signedagreement_is_primary.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,29 @@ | ||
# Generated by Django 4.2.10 on 2024-03-18 17:24 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cdsa", "0018_dataaffiliateagreement_requires_study_review_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="historicalsignedagreement", | ||
name="is_primary", | ||
field=models.BooleanField( | ||
help_text="Indicator of whether this is a primary Agreement (and not a component Agreement).", | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="signedagreement", | ||
name="is_primary", | ||
field=models.BooleanField( | ||
help_text="Indicator of whether this is a primary Agreement (and not a component Agreement).", | ||
null=True, | ||
), | ||
), | ||
] |
49 changes: 49 additions & 0 deletions
49
primed/cdsa/migrations/0020_dataaffiliateagreement_is_primary_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,49 @@ | ||
# Generated by Django 4.2.10 on 2024-03-15 22:43 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cdsa", "0019_alter_signedagreement_is_primary"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="dataaffiliateagreement", | ||
name="is_primary", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Indicator of whether this is a primary Agreement (and not a component Agreement).", | ||
), | ||
preserve_default=False, | ||
), | ||
migrations.AddField( | ||
model_name="historicaldataaffiliateagreement", | ||
name="is_primary", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Indicator of whether this is a primary Agreement (and not a component Agreement).", | ||
), | ||
preserve_default=False, | ||
), | ||
migrations.AddField( | ||
model_name="historicalmemberagreement", | ||
name="is_primary", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Indicator of whether this is a primary Agreement (and not a component Agreement).", | ||
), | ||
preserve_default=False, | ||
), | ||
migrations.AddField( | ||
model_name="memberagreement", | ||
name="is_primary", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Indicator of whether this is a primary Agreement (and not a component Agreement).", | ||
), | ||
preserve_default=False, | ||
), | ||
] |
Oops, something went wrong.