Skip to content

Commit

Permalink
feat: updating the group name field to 250 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinan029 committed Oct 23, 2024
1 parent 64b24fd commit 29e0928
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Unreleased
----------
* nothing unreleased

[4.28.4]
--------
* feat: updating the character count for group name to 250

[4.28.3]
--------
* feat: removing all references of to-be-deleted field
Expand Down
2 changes: 1 addition & 1 deletion enterprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Your project description goes here.
"""

__version__ = "4.28.3"
__version__ = "4.28.4"
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Generated by Django 4.2.16 on 2024-10-23 22:38

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('enterprise', '0224_alter_enterprisegroup_applies_to_all_contexts_and_more'),
]

operations = [
migrations.RemoveField(
model_name='enterprisegroup',
name='applies_to_all_contexts',
),
migrations.RemoveField(
model_name='historicalenterprisegroup',
name='applies_to_all_contexts',
),
migrations.AlterField(
model_name='enterprisegroup',
name='name',
field=models.CharField(help_text='Specifies enterprise group name.', max_length=250),
),
migrations.AlterField(
model_name='historicalenterprisegroup',
name='name',
field=models.CharField(help_text='Specifies enterprise group name.', max_length=250),
),
]
2 changes: 1 addition & 1 deletion enterprise/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -4484,7 +4484,7 @@ class EnterpriseGroup(TimeStampedModel, SoftDeletableModel):
"""
uuid = models.UUIDField(primary_key=True, default=uuid4, editable=False)
name = models.CharField(
max_length=25,
max_length=250,
blank=False,
help_text=_(
'Specifies enterprise group name.'
Expand Down

0 comments on commit 29e0928

Please sign in to comment.