-
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
1 parent
733e7c9
commit 83391e3
Showing
9 changed files
with
223 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
consent/migrations/0007_alter_historicaldatasharingconsent_options.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 4.2.5 on 2023-09-25 08:43 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('consent', '0006_alter_historicaldatasharingconsent_options'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicaldatasharingconsent', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Data Sharing Consent Record'}, | ||
), | ||
] |
90 changes: 90 additions & 0 deletions
90
...e/migrations/0186_alter_historicalenrollmentnotificationemailtemplate_options_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,90 @@ | ||
# Generated by Django 4.2.5 on 2023-09-25 08:43 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('enterprise', '0185_auto_20230921_1007'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicalenrollmentnotificationemailtemplate', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical enrollment notification email template'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalenterprisecourseenrollment', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical enterprise course enrollment'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalenterprisecourseentitlement', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical enterprise course entitlement'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalenterprisecustomer', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Enterprise Customer'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalenterprisecustomercatalog', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Enterprise Customer Catalog'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalenterprisecustomerinvitekey', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical enterprise customer invite key'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalenterprisecustomerssoconfiguration', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Enterprise Customer SSO Configuration'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalenterprisecustomeruser', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Enterprise Customer Learner'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicallearnercreditenterprisecourseenrollment', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical learner credit enterprise course enrollment'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicallicensedenterprisecourseenrollment', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical licensed enterprise course enrollment'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalpendingenrollment', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical pending enrollment'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalpendingenterprisecustomeradminuser', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical pending enterprise customer admin user'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalpendingenterprisecustomeruser', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical pending enterprise customer user'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalsystemwideenterpriseuserroleassignment', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical system wide enterprise user role assignment'}, | ||
), | ||
migrations.AlterField( | ||
model_name='learnercreditenterprisecourseenrollment', | ||
name='enterprise_course_enrollment', | ||
field=models.OneToOneField(blank=True, help_text='The course enrollment the associated subsidy is for.', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_enrollment_fulfillment', to='enterprise.enterprisecourseenrollment'), | ||
), | ||
migrations.AlterField( | ||
model_name='learnercreditenterprisecourseenrollment', | ||
name='enterprise_course_entitlement', | ||
field=models.OneToOneField(blank=True, help_text='The course entitlement the associated subsidy is for.', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_entitlement_fulfillment', to='enterprise.enterprisecourseentitlement'), | ||
), | ||
migrations.AlterField( | ||
model_name='licensedenterprisecourseenrollment', | ||
name='enterprise_course_enrollment', | ||
field=models.OneToOneField(blank=True, help_text='The course enrollment the associated subsidy is for.', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_enrollment_fulfillment', to='enterprise.enterprisecourseenrollment'), | ||
), | ||
migrations.AlterField( | ||
model_name='licensedenterprisecourseenrollment', | ||
name='enterprise_course_entitlement', | ||
field=models.OneToOneField(blank=True, help_text='The course entitlement the associated subsidy is for.', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_entitlement_fulfillment', to='enterprise.enterprisecourseentitlement'), | ||
), | ||
] |
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,14 @@ | ||
# Generated by Django 4.2.5 on 2023-09-27 12:45 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('enterprise', '0186_alter_historicalenrollmentnotificationemailtemplate_options_and_more'), | ||
('enterprise', '0186_auto_20230921_1828'), | ||
] | ||
|
||
operations = [ | ||
] |
17 changes: 17 additions & 0 deletions
17
...oard/migrations/0018_alter_historicalblackboardenterprisecustomerconfiguration_options.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 4.2.5 on 2023-09-25 08:43 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('blackboard', '0017_alter_historicalblackboardenterprisecustomerconfiguration_options'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicalblackboardenterprisecustomerconfiguration', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical blackboard enterprise customer configuration'}, | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...s/canvas/migrations/0033_alter_historicalcanvasenterprisecustomerconfiguration_options.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 4.2.5 on 2023-09-25 08:43 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('canvas', '0032_alter_historicalcanvasenterprisecustomerconfiguration_options'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicalcanvasenterprisecustomerconfiguration', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical canvas enterprise customer configuration'}, | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...one/migrations/0030_alter_historicalcornerstoneenterprisecustomerconfiguration_options.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 4.2.5 on 2023-09-25 08:43 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('cornerstone', '0029_alter_historicalcornerstoneenterprisecustomerconfiguration_options'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicalcornerstoneenterprisecustomerconfiguration', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical cornerstone enterprise customer configuration'}, | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...degreed/migrations/0032_alter_historicaldegreedenterprisecustomerconfiguration_options.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 4.2.5 on 2023-09-25 08:43 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('degreed', '0031_alter_historicaldegreedenterprisecustomerconfiguration_options'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicaldegreedenterprisecustomerconfiguration', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical degreed enterprise customer configuration'}, | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...greed2/migrations/0024_alter_historicaldegreed2enterprisecustomerconfiguration_options.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 4.2.5 on 2023-09-25 08:43 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('degreed2', '0023_alter_historicaldegreed2enterprisecustomerconfiguration_options'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicaldegreed2enterprisecustomerconfiguration', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical degreed2 enterprise customer configuration'}, | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...s/moodle/migrations/0028_alter_historicalmoodleenterprisecustomerconfiguration_options.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 4.2.5 on 2023-09-25 08:43 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('moodle', '0027_alter_historicalmoodleenterprisecustomerconfiguration_options'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicalmoodleenterprisecustomerconfiguration', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical moodle enterprise customer configuration'}, | ||
), | ||
] |