Skip to content

Commit

Permalink
fix: updating group association group field
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-sheehan-edx committed Mar 13, 2024
1 parent a18ed95 commit a3ef203
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
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),
),
]
8 changes: 4 additions & 4 deletions enterprise_access/apps/subsidy_access_policy/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1449,9 +1449,9 @@ class Meta:
)

enterprise_group_uuid = models.UUIDField(
default=uuid4,
editable=False,
unique=True,
null=False,
editable=True,
unique=False,
null=True,
blank=True,
help_text='The uuid that uniquely identifies the associated group.',
)

0 comments on commit a3ef203

Please sign in to comment.