-
Notifications
You must be signed in to change notification settings - Fork 10
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
14105fe
commit ae987cc
Showing
17 changed files
with
575 additions
and
419 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
21 changes: 21 additions & 0 deletions
21
enterprise_access/apps/content_assignments/migrations/0008_auto_20230927_1201.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.21 on 2023-09-27 12:01 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('content_assignments', '0007_index_assignment_state'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicalassignmentconfiguration', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical assignment configuration', 'verbose_name_plural': 'historical assignment configurations'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicallearnercontentassignment', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical learner content assignment', 'verbose_name_plural': 'historical learner content assignments'}, | ||
), | ||
] |
36 changes: 36 additions & 0 deletions
36
enterprise_access/apps/subsidy_access_policy/migrations/0018_auto_20230927_1201.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,36 @@ | ||
# Generated by Django 3.2.21 on 2023-09-27 12:01 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('content_assignments', '0008_auto_20230927_1201'), | ||
('subsidy_access_policy', '0017_active_assignment_config_unique'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicalassignedlearnercreditaccesspolicy', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical assigned learner credit access policy', 'verbose_name_plural': 'historical assigned learner credit access policys'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalperlearnerenrollmentcreditaccesspolicy', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical per learner enrollment credit access policy', 'verbose_name_plural': 'historical per learner enrollment credit access policys'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalperlearnerspendcreditaccesspolicy', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical per learner spend credit access policy', 'verbose_name_plural': 'historical per learner spend credit access policys'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalsubsidyaccesspolicy', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical subsidy access policy', 'verbose_name_plural': 'historical subsidy access policys'}, | ||
), | ||
migrations.AlterField( | ||
model_name='subsidyaccesspolicy', | ||
name='assignment_configuration', | ||
field=models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='subsidy_access_policy', to='content_assignments.assignmentconfiguration'), | ||
), | ||
] |
25 changes: 25 additions & 0 deletions
25
enterprise_access/apps/subsidy_request/migrations/0012_auto_20230927_1201.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,25 @@ | ||
# Generated by Django 3.2.21 on 2023-09-27 12:01 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('subsidy_request', '0011_subsidy_request_course_partners_jsonfield'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicalcouponcoderequest', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical coupon code request', 'verbose_name_plural': 'historical coupon code requests'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicallicenserequest', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical license request', 'verbose_name_plural': 'historical license requests'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicalsubsidyrequestcustomerconfiguration', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical subsidy request customer configuration', 'verbose_name_plural': 'historical subsidy request customer configurations'}, | ||
), | ||
] |
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.