-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
200 additions
and
49 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
44 changes: 44 additions & 0 deletions
44
integrated_channels/blackboard/migrations/0019_auto_20240118_1822.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,44 @@ | ||
# Generated by Django 3.2.22 on 2024-01-18 18:22 | ||
|
||
from django.apps import apps | ||
from django.db import migrations | ||
from django.core.exceptions import FieldDoesNotExist | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('blackboard', '0018_auto_20240110_1301'), | ||
] | ||
|
||
# johnnagro 20240118 DOS-4490 | ||
# we are reverting a partially applied deployment migration | ||
# this migration conditionally cleans up the previous migration operations | ||
# only if they were part of the partially applied ones | ||
|
||
BlackboardLearnerAssessmentDataTransmissionAudit = apps.get_model('blackboard', 'BlackboardLearnerAssessmentDataTransmissionAudit') | ||
BlackboardLearnerDataTransmissionAudit = apps.get_model('blackboard', 'BlackboardLearnerDataTransmissionAudit') | ||
|
||
operations = [] | ||
|
||
try: | ||
if BlackboardLearnerDataTransmissionAudit._meta.get_field('transmission_status'): | ||
operations.append( | ||
migrations.RemoveField( | ||
model_name='blackboardlearnerdatatransmissionaudit', | ||
name='transmission_status', | ||
) | ||
) | ||
except FieldDoesNotExist: | ||
pass | ||
|
||
try: | ||
if BlackboardLearnerAssessmentDataTransmissionAudit._meta.get_field('transmission_status'): | ||
operations.append( | ||
migrations.RemoveField( | ||
model_name='blackboardlearnerassessmentdatatransmissionaudit', | ||
name='transmission_status', | ||
) | ||
) | ||
except FieldDoesNotExist: | ||
pass |
21 changes: 21 additions & 0 deletions
21
integrated_channels/canvas/migrations/0034_auto_20240118_1822.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,21 @@ | ||
# Generated by Django 3.2.22 on 2024-01-18 18:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('canvas', '0033_auto_20240110_1301'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='canvaslearnerassessmentdatatransmissionaudit', | ||
name='transmission_status', | ||
), | ||
migrations.RemoveField( | ||
model_name='canvaslearnerdatatransmissionaudit', | ||
name='transmission_status', | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...one/migrations/0033_remove_cornerstonelearnerdatatransmissionaudit_transmission_status.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,17 @@ | ||
# Generated by Django 3.2.22 on 2024-01-18 18:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('cornerstone', '0032_cornerstonelearnerdatatransmissionaudit_transmission_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='cornerstonelearnerdatatransmissionaudit', | ||
name='transmission_status', | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...degreed/migrations/0033_remove_degreedlearnerdatatransmissionaudit_transmission_status.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,17 @@ | ||
# Generated by Django 3.2.22 on 2024-01-18 18:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('degreed', '0032_degreedlearnerdatatransmissionaudit_transmission_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='degreedlearnerdatatransmissionaudit', | ||
name='transmission_status', | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...greed2/migrations/0025_remove_degreed2learnerdatatransmissionaudit_transmission_status.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,17 @@ | ||
# Generated by Django 3.2.22 on 2024-01-18 18:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('degreed2', '0024_degreed2learnerdatatransmissionaudit_transmission_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='degreed2learnerdatatransmissionaudit', | ||
name='transmission_status', | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...channel/migrations/0032_remove_genericlearnerdatatransmissionaudit_transmission_status.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,17 @@ | ||
# Generated by Django 3.2.22 on 2024-01-18 18:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('integrated_channel', '0031_genericlearnerdatatransmissionaudit_transmission_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='genericlearnerdatatransmissionaudit', | ||
name='transmission_status', | ||
), | ||
] |
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
17 changes: 17 additions & 0 deletions
17
...s/moodle/migrations/0033_remove_moodlelearnerdatatransmissionaudit_transmission_status.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,17 @@ | ||
# Generated by Django 3.2.22 on 2024-01-18 18:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('moodle', '0032_auto_20240117_1202'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='moodlelearnerdatatransmissionaudit', | ||
name='transmission_status', | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...grations/0016_remove_sapsuccessfactorslearnerdatatransmissionaudit_transmission_status.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,17 @@ | ||
# Generated by Django 3.2.22 on 2024-01-18 18:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('sap_success_factors', '0015_sapsuccessfactorslearnerdatatransmissionaudit_transmission_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='sapsuccessfactorslearnerdatatransmissionaudit', | ||
name='transmission_status', | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...nnels/xapi/migrations/0013_remove_xapilearnerdatatransmissionaudit_transmission_status.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,17 @@ | ||
# Generated by Django 3.2.22 on 2024-01-18 18:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('xapi', '0012_xapilearnerdatatransmissionaudit_transmission_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='xapilearnerdatatransmissionaudit', | ||
name='transmission_status', | ||
), | ||
] |
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