Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: updating the group name field to 255 characters #2271

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 255

[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),
),
]
23 changes: 23 additions & 0 deletions enterprise/migrations/0226_alter_enterprisegroup_name_and_more.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.2.16 on 2024-10-23 22:59

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('enterprise', '0225_remove_enterprisegroup_applies_to_all_contexts_and_more'),
]

operations = [
migrations.AlterField(
model_name='enterprisegroup',
name='name',
field=models.CharField(help_text='Specifies enterprise group name.', max_length=255),
),
migrations.AlterField(
model_name='historicalenterprisegroup',
name='name',
field=models.CharField(help_text='Specifies enterprise group name.', max_length=255),
),
]
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=255,
blank=False,
help_text=_(
'Specifies enterprise group name.'
Expand Down
Loading