forked from openedx/course-discovery
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update course and course_run card_image_url length to 500
- Loading branch information
1 parent
f6105c8
commit 6894bfe
Showing
2 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
course_discovery/apps/course_metadata/migrations/0322_auto_20231012_0821.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 3.2.20 on 2023-10-12 08:21 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('course_metadata', '0321_add_verified_only_course_type'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='course', | ||
name='card_image_url', | ||
field=models.URLField(blank=True, max_length=500, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='courserun', | ||
name='card_image_url', | ||
field=models.URLField(blank=True, max_length=500, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalcourse', | ||
name='card_image_url', | ||
field=models.URLField(blank=True, max_length=500, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalcourserun', | ||
name='card_image_url', | ||
field=models.URLField(blank=True, max_length=500, 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