-
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.
fix: add index on error_message and enterprise_course_enrollment_id e…
…xcept of only enterprise_course_enrollment_id
- Loading branch information
1 parent
41c7614
commit 792c558
Showing
16 changed files
with
200 additions
and
2 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
integrated_channels/blackboard/migrations/0020_auto_20240319_2216.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,27 @@ | ||
# Generated by Django 3.2.19 on 2024-03-19 22:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('blackboard', '0019_delete_historicalblackboardenterprisecustomerconfiguration'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='blackboardlearnerassessmentdatatransmissionaudit', | ||
name='enterprise_course_enrollment_id', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='blackboardlearnerdatatransmissionaudit', | ||
name='enterprise_course_enrollment_id', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
migrations.AddIndex( | ||
model_name='blackboardlearnerdatatransmissionaudit', | ||
index=models.Index(fields=['error_message', 'enterprise_course_enrollment_id'], name='blackboard_course_error_idx'), | ||
), | ||
] |
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
27 changes: 27 additions & 0 deletions
27
integrated_channels/canvas/migrations/0035_auto_20240319_2051.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,27 @@ | ||
# Generated by Django 3.2.19 on 2024-03-19 20:51 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('canvas', '0034_delete_historicalcanvasenterprisecustomerconfiguration'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='canvaslearnerassessmentdatatransmissionaudit', | ||
name='enterprise_course_enrollment_id', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='canvaslearnerdatatransmissionaudit', | ||
name='enterprise_course_enrollment_id', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
migrations.AddIndex( | ||
model_name='canvaslearnerdatatransmissionaudit', | ||
index=models.Index(fields=['error_message', 'enterprise_course_enrollment_id'], name='canvas_course_error_idx'), | ||
), | ||
] |
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
22 changes: 22 additions & 0 deletions
22
integrated_channels/cornerstone/migrations/0034_auto_20240319_2219.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,22 @@ | ||
# Generated by Django 3.2.19 on 2024-03-19 22:19 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('cornerstone', '0033_delete_historicalcornerstoneenterprisecustomerconfiguration'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='cornerstonelearnerdatatransmissionaudit', | ||
name='enterprise_course_enrollment_id', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
migrations.AddIndex( | ||
model_name='cornerstonelearnerdatatransmissionaudit', | ||
index=models.Index(fields=['error_message', 'enterprise_course_enrollment_id'], name='cornerstone_course_error_idx'), | ||
), | ||
] |
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
22 changes: 22 additions & 0 deletions
22
integrated_channels/degreed2/migrations/0026_auto_20240319_2223.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,22 @@ | ||
# Generated by Django 3.2.19 on 2024-03-19 22:23 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('degreed2', '0025_delete_historicaldegreed2enterprisecustomerconfiguration'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='degreed2learnerdatatransmissionaudit', | ||
name='enterprise_course_enrollment_id', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
migrations.AddIndex( | ||
model_name='degreed2learnerdatatransmissionaudit', | ||
index=models.Index(fields=['error_message', 'enterprise_course_enrollment_id'], name='degreed2_course_error_idx'), | ||
), | ||
] |
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
18 changes: 18 additions & 0 deletions
18
...rations/0035_alter_genericlearnerdatatransmissionaudit_enterprise_course_enrollment_id.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,18 @@ | ||
# Generated by Django 3.2.19 on 2024-03-19 20:04 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('integrated_channel', '0034_contentmetadataitemtransmission_remote_errored_at'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='genericlearnerdatatransmissionaudit', | ||
name='enterprise_course_enrollment_id', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
] |
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
22 changes: 22 additions & 0 deletions
22
integrated_channels/moodle/migrations/0034_auto_20240319_1947.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,22 @@ | ||
# Generated by Django 3.2.19 on 2024-03-19 19:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('moodle', '0033_delete_historicalmoodleenterprisecustomerconfiguration'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='moodlelearnerdatatransmissionaudit', | ||
name='enterprise_course_enrollment_id', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
migrations.AddIndex( | ||
model_name='moodlelearnerdatatransmissionaudit', | ||
index=models.Index(fields=['error_message', 'enterprise_course_enrollment_id'], name='moodle_course_error_idx'), | ||
), | ||
] |
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
...ors/migrations/0016_sapsuccessfactorslearnerdatatransmissionaudit_sap_course_error_idx.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.19 on 2024-03-19 22:30 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('sap_success_factors', '0015_sapsuccessfactorslearnerdatatransmissionaudit_sap_unique_enrollment_course_id'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddIndex( | ||
model_name='sapsuccessfactorslearnerdatatransmissionaudit', | ||
index=models.Index(fields=['error_message', 'enterprise_course_enrollment_id'], name='sap_course_error_idx'), | ||
), | ||
] |
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
22 changes: 22 additions & 0 deletions
22
integrated_channels/xapi/migrations/0012_auto_20240319_2213.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,22 @@ | ||
# Generated by Django 3.2.19 on 2024-03-19 22:13 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('xapi', '0011_alter_xapilearnerdatatransmissionaudit_index_together'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='xapilearnerdatatransmissionaudit', | ||
name='enterprise_course_enrollment_id', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
migrations.AddIndex( | ||
model_name='xapilearnerdatatransmissionaudit', | ||
index=models.Index(fields=['error_message', 'enterprise_course_enrollment_id'], name='xapi_course_error_idx'), | ||
), | ||
] |
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