-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: updating the group name field to 250 characters
- Loading branch information
1 parent
64b24fd
commit ba91a7a
Showing
5 changed files
with
60 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Your project description goes here. | ||
""" | ||
|
||
__version__ = "4.28.3" | ||
__version__ = "4.28.4" |
31 changes: 31 additions & 0 deletions
31
enterprise/migrations/0225_remove_enterprisegroup_applies_to_all_contexts_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,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
23
enterprise/migrations/0226_alter_enterprisegroup_name_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,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), | ||
), | ||
] |
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