-
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 #416 from UW-GAC/feature/is-sensitive-rename
Rename is_sensitive field to gsr_restricted
- Loading branch information
Showing
20 changed files
with
178 additions
and
74 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
23 changes: 23 additions & 0 deletions
23
primed/cdsa/migrations/0013_rename_is_sensitive_cdsaworkspace_gsr_sensitive_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.8 on 2024-01-31 21:12 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cdsa", "0012_cdsaworkspace_is_sensitive_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name="cdsaworkspace", | ||
old_name="is_sensitive", | ||
new_name="gsr_restricted", | ||
), | ||
migrations.RenameField( | ||
model_name="historicalcdsaworkspace", | ||
old_name="is_sensitive", | ||
new_name="gsr_restricted", | ||
), | ||
] |
29 changes: 29 additions & 0 deletions
29
primed/cdsa/migrations/0014_gsr_restricted_help_and_verbose.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.8 on 2024-01-31 21:15 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cdsa", "0013_rename_is_sensitive_cdsaworkspace_gsr_sensitive_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="cdsaworkspace", | ||
name="gsr_restricted", | ||
field=models.BooleanField( | ||
help_text="Indicator of whether public posting of GSRs is restricted.", | ||
verbose_name="GSR restricted?", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicalcdsaworkspace", | ||
name="gsr_restricted", | ||
field=models.BooleanField( | ||
help_text="Indicator of whether public posting of GSRs is restricted.", | ||
verbose_name="GSR restricted?", | ||
), | ||
), | ||
] |
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
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
23 changes: 23 additions & 0 deletions
23
primed/dbgap/migrations/0010_rename_is_sensitive_dbgapworkspace_gsr_sensitive_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.8 on 2024-01-31 21:12 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("dbgap", "0009_dbgapworkspace_is_sensitive_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name="dbgapworkspace", | ||
old_name="is_sensitive", | ||
new_name="gsr_restricted", | ||
), | ||
migrations.RenameField( | ||
model_name="historicaldbgapworkspace", | ||
old_name="is_sensitive", | ||
new_name="gsr_restricted", | ||
), | ||
] |
29 changes: 29 additions & 0 deletions
29
primed/dbgap/migrations/0011_gsr_restricted_help_and_verbose.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.8 on 2024-01-31 21:15 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("dbgap", "0010_rename_is_sensitive_dbgapworkspace_gsr_sensitive_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="dbgapworkspace", | ||
name="gsr_restricted", | ||
field=models.BooleanField( | ||
help_text="Indicator of whether public posting of GSRs is restricted.", | ||
verbose_name="GSR restricted?", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicaldbgapworkspace", | ||
name="gsr_restricted", | ||
field=models.BooleanField( | ||
help_text="Indicator of whether public posting of GSRs is restricted.", | ||
verbose_name="GSR restricted?", | ||
), | ||
), | ||
] |
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.