-
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 #506 from UW-GAC/feature/cdsa-data-affiliate-addit…
…ional-limitations Track additional limitations associated with Data Affiliate CDSAs
- Loading branch information
Showing
15 changed files
with
415 additions
and
32 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
29 changes: 29 additions & 0 deletions
29
primed/cdsa/migrations/0015_dataaffiliateagreement_additional_limitations_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-12 21:38 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cdsa", "0014_gsr_restricted_help_and_verbose"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="dataaffiliateagreement", | ||
name="additional_limitations", | ||
field=models.TextField( | ||
blank=True, | ||
help_text="Additional limitations on data use as specified in the signed CDSA.", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicaldataaffiliateagreement", | ||
name="additional_limitations", | ||
field=models.TextField( | ||
blank=True, | ||
help_text="Additional limitations on data use as specified in the signed CDSA.", | ||
), | ||
), | ||
] |
23 changes: 23 additions & 0 deletions
23
...rations/0016_rename_data_use_limitations_cdsaworkspace_additional_limitations_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,23 @@ | ||
# Generated by Django 4.2.10 on 2024-03-14 18:35 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cdsa", "0015_dataaffiliateagreement_additional_limitations_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name="cdsaworkspace", | ||
old_name="data_use_limitations", | ||
new_name="additional_limitations", | ||
), | ||
migrations.RenameField( | ||
model_name="historicalcdsaworkspace", | ||
old_name="data_use_limitations", | ||
new_name="additional_limitations", | ||
), | ||
] |
32 changes: 32 additions & 0 deletions
32
primed/cdsa/migrations/0017_alter_cdsaworkspace_additional_limitations_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,32 @@ | ||
# Generated by Django 4.2.10 on 2024-03-14 18:36 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
( | ||
"cdsa", | ||
"0016_rename_data_use_limitations_cdsaworkspace_additional_limitations_and_more", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="cdsaworkspace", | ||
name="additional_limitations", | ||
field=models.TextField( | ||
blank=True, | ||
help_text="Additional data use limitations that cannot be captured by DUO.", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicalcdsaworkspace", | ||
name="additional_limitations", | ||
field=models.TextField( | ||
blank=True, | ||
help_text="Additional data use limitations that cannot be captured by DUO.", | ||
), | ||
), | ||
] |
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
Oops, something went wrong.