-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add new fields for wordpress filters EDLY-6765
- Loading branch information
1 parent
b4d068e
commit 0facc3a
Showing
6 changed files
with
111 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
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
73 changes: 73 additions & 0 deletions
73
course_discovery/apps/course_metadata/migrations/0271_auto_20240507_0825.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,73 @@ | ||
# Generated by Django 2.2.16 on 2024-05-07 08:25 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('course_metadata', '0270_auto_20231024_0956'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='courserun', | ||
name='course_certifications', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Certifications'), | ||
), | ||
migrations.AddField( | ||
model_name='courserun', | ||
name='course_department', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Department'), | ||
), | ||
migrations.AddField( | ||
model_name='courserun', | ||
name='course_difficulty_level', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Difficulty Level'), | ||
), | ||
migrations.AddField( | ||
model_name='courserun', | ||
name='course_format', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Format'), | ||
), | ||
migrations.AddField( | ||
model_name='courserun', | ||
name='course_language', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Language'), | ||
), | ||
migrations.AddField( | ||
model_name='courserun', | ||
name='course_training_packages', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Training Packages'), | ||
), | ||
migrations.AddField( | ||
model_name='historicalcourserun', | ||
name='course_certifications', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Certifications'), | ||
), | ||
migrations.AddField( | ||
model_name='historicalcourserun', | ||
name='course_department', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Department'), | ||
), | ||
migrations.AddField( | ||
model_name='historicalcourserun', | ||
name='course_difficulty_level', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Difficulty Level'), | ||
), | ||
migrations.AddField( | ||
model_name='historicalcourserun', | ||
name='course_format', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Format'), | ||
), | ||
migrations.AddField( | ||
model_name='historicalcourserun', | ||
name='course_language', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Language'), | ||
), | ||
migrations.AddField( | ||
model_name='historicalcourserun', | ||
name='course_training_packages', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='Course Training Packages'), | ||
), | ||
] |
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