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.
- Loading branch information
Taimoor Ahmed
authored and
Taimoor Ahmed
committed
Nov 30, 2023
1 parent
b8ae0c1
commit 5946ebc
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
course_discovery/apps/course_metadata/migrations/0270_auto_20231024_0956.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,32 @@ | ||
# Generated by Django 2.2.24 on 2023-10-24 09:56 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0018_auto_20200414_0739'), | ||
('course_metadata', '0269_depr_program_card_image_url_and_add_exec_ed_cert_type'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='program', | ||
options={}, | ||
), | ||
migrations.AlterField( | ||
model_name='historicalprogram', | ||
name='title', | ||
field=models.CharField(help_text='The user-facing display title for this Program.', max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='program', | ||
name='title', | ||
field=models.CharField(help_text='The user-facing display title for this Program.', max_length=255), | ||
), | ||
migrations.AlterUniqueTogether( | ||
name='program', | ||
unique_together={('partner', 'title')}, | ||
), | ||
] |