-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/github_actions/codecov/codecov-…
…action-5
- Loading branch information
Showing
26 changed files
with
429 additions
and
191 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
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
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
...rprise_data/migrations/0045_alter_enterpriseexecedlcmoduleperformance_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,27 @@ | ||
# Generated by Django 4.2.15 on 2024-12-23 12:55 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('enterprise_data', '0044_enterpriseexecedlcmoduleperformance'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='enterpriseexecedlcmoduleperformance', | ||
options={'verbose_name': 'Exec Ed LC Module Performance', 'verbose_name_plural': 'Exec Ed LC Module Performance'}, | ||
), | ||
migrations.AddField( | ||
model_name='enterpriselearnerenrollment', | ||
name='user_first_name', | ||
field=models.CharField(max_length=255, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='enterpriselearnerenrollment', | ||
name='user_last_name', | ||
field=models.CharField(max_length=255, null=True), | ||
), | ||
] |
36 changes: 36 additions & 0 deletions
36
enterprise_data/migrations/0046_enterprisegroupmembership.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 4.2.16 on 2025-01-08 07:31 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('enterprise_data', '0045_alter_enterpriseexecedlcmoduleperformance_options_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='EnterpriseGroupMembership', | ||
fields=[ | ||
('group_membership_unique_id', models.CharField(max_length=64, primary_key=True, serialize=False)), | ||
('is_applies_to_all_contexts', models.BooleanField(default=False)), | ||
('enterprise_customer_id', models.UUIDField(db_index=True, null=True)), | ||
('enterprise_group_name', models.CharField(max_length=255, null=True)), | ||
('enterprise_group_uuid', models.UUIDField(null=True)), | ||
('group_is_removed', models.BooleanField(default=False)), | ||
('group_type', models.CharField(max_length=128, null=True)), | ||
('activated_at', models.DateTimeField(null=True)), | ||
('enterprise_customer_user_id', models.PositiveIntegerField(null=True)), | ||
('membership_is_removed', models.BooleanField(default=False)), | ||
('membership_status', models.CharField(max_length=128, null=True)), | ||
('enterprise_group_membership_uuid', models.UUIDField(null=True)), | ||
], | ||
options={ | ||
'verbose_name': 'Group Membership', | ||
'verbose_name_plural': 'Group Memberships', | ||
'db_table': 'group_membership', | ||
'indexes': [models.Index(fields=['enterprise_group_uuid', 'group_type', 'enterprise_customer_user_id'], name='group_membe_enterpr_796f48_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
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.