-
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.
Merge pull request #422 from openedx/asheehan-edx/fixing-group-associ…
…ation-group-field fix: updating group association group field
- Loading branch information
Showing
2 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
...bsidy_access_policy/migrations/0023_alter_policygroupassociation_enterprise_group_uuid.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 4.2.10 on 2024-03-13 18:17 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('subsidy_access_policy', '0022_policygroupassociation'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='policygroupassociation', | ||
name='enterprise_group_uuid', | ||
field=models.UUIDField(blank=True, help_text='The uuid that uniquely identifies the associated group.', 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