-
Notifications
You must be signed in to change notification settings - Fork 48
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 #2147 from openedx/sameeramin/ENT-9003-2a
refactor: made `career_engagement_network_message` nullable
- Loading branch information
Showing
5 changed files
with
51 additions
and
1 deletion.
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.20.2" | ||
__version__ = "4.20.3" |
33 changes: 33 additions & 0 deletions
33
...se/migrations/0212_alter_enterprisecustomer_career_engagement_network_message_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,33 @@ | ||
# Generated by Django 4.2.10 on 2024-06-13 10:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('enterprise', '0211_enterprisecustomer_show_videos_in_learner_portal_search_results_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='enterprisecustomer', | ||
name='career_engagement_network_message', | ||
field=models.TextField(blank=True, help_text='Message text shown on the learner portal dashboard for career engagement network.', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='enterprisecustomer', | ||
name='learner_portal_sidebar_content', | ||
field=models.TextField(blank=True, help_text='Text shown on the learner portal dashboard for customer specific purposes. Open HTML field.', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalenterprisecustomer', | ||
name='career_engagement_network_message', | ||
field=models.TextField(blank=True, help_text='Message text shown on the learner portal dashboard for career engagement network.', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalenterprisecustomer', | ||
name='learner_portal_sidebar_content', | ||
field=models.TextField(blank=True, help_text='Text shown on the learner portal dashboard for customer specific purposes. Open HTML field.', 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
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