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