Skip to content

Commit

Permalink
Merge branch '5343-upgrade-django-in-mitxonline' of https://github.co…
Browse files Browse the repository at this point in the history
…m/mitodl/mitxonline into 5343-upgrade-django-in-mitxonline
  • Loading branch information
cp-at-mit committed Sep 10, 2024
2 parents 161f909 + 796baee commit 0b66546
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions courses/migrations/0055_rename_programrequirement_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@


class Migration(migrations.Migration):

dependencies = [
('courses', '0054_add_program_availability'),
("courses", "0054_add_program_availability"),
]

operations = [
migrations.RenameIndex(
model_name='programrequirement',
new_name='courses_pro_course__fdcdb6_idx',
old_fields=('course', 'program'),
model_name="programrequirement",
new_name="courses_pro_course__fdcdb6_idx",
old_fields=("course", "program"),
),
migrations.RenameIndex(
model_name='programrequirement',
new_name='courses_pro_program_c8ff7c_idx',
old_fields=('program', 'course'),
model_name="programrequirement",
new_name="courses_pro_program_c8ff7c_idx",
old_fields=("program", "course"),
),
]

0 comments on commit 0b66546

Please sign in to comment.