Skip to content

Commit d5df0f6

Browse files
Fix courses migration graph for deploy
1 parent 4e16910 commit d5df0f6

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

courses/migrations/0028_leaderboardcomplaint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class Migration(migrations.Migration):
99

1010
dependencies = [
11-
('courses', '0027_homework_instructions_url_project_instructions_url_and_more'),
11+
('courses', '0026_enrollment_disable_learning_in_public_and_more'),
1212
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
1313
]
1414

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from django.db import migrations
2+
3+
4+
class Migration(migrations.Migration):
5+
dependencies = [
6+
("courses", "0027_homework_instructions_url_project_instructions_url_and_more"),
7+
("courses", "0030_remove_enrollment_profile_fields"),
8+
]
9+
10+
operations = []

0 commit comments

Comments
 (0)