Reformat code
This commit is contained in:
parent
09dcfcc418
commit
100e42bdd2
|
|
@ -6,13 +6,13 @@ from django.db import migrations
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('course', '0002_initial'),
|
||||
("course", "0002_initial"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='coursesession',
|
||||
old_name='attendance_days',
|
||||
new_name='attendance_courses',
|
||||
model_name="coursesession",
|
||||
old_name="attendance_days",
|
||||
new_name="attendance_courses",
|
||||
),
|
||||
]
|
||||
|
|
|
|||
|
|
@ -7,17 +7,17 @@ from django.db import migrations
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wagtailcore', '0083_workflowcontenttype'),
|
||||
('wagtailforms', '0005_alter_formsubmission_form_data'),
|
||||
('wagtailredirects', '0008_add_verbose_name_plural'),
|
||||
('contenttypes', '0002_remove_content_type_name'),
|
||||
("wagtailcore", "0083_workflowcontenttype"),
|
||||
("wagtailforms", "0005_alter_formsubmission_form_data"),
|
||||
("wagtailredirects", "0008_add_verbose_name_plural"),
|
||||
("contenttypes", "0002_remove_content_type_name"),
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
('learnpath', '0002_learningcontentrichtext_text'),
|
||||
("learnpath", "0002_learningcontentrichtext_text"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameModel(
|
||||
old_name='LearningContentAttendanceDay',
|
||||
new_name='LearningContentAttendanceCourse',
|
||||
old_name="LearningContentAttendanceDay",
|
||||
new_name="LearningContentAttendanceCourse",
|
||||
),
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue