Commit fdf540d2 by Peter Fogg

Merge pull request #11236 from edx/peter-fogg/fix-course-mode-migration

Change broken course_modes migration to not touch the database.
parents 68ba8ece 4f323443
...@@ -11,13 +11,18 @@ class Migration(migrations.Migration): ...@@ -11,13 +11,18 @@ class Migration(migrations.Migration):
] ]
operations = [ operations = [
migrations.RemoveField( migrations.SeparateDatabaseAndState(
model_name='coursemode', database_operations=[],
name='expiration_datetime', state_operations=[
), migrations.RemoveField(
migrations.AddField( model_name='coursemode',
model_name='coursemode', name='expiration_datetime',
name='_expiration_datetime', ),
field=models.DateTimeField(db_column=b'expiration_datetime', default=None, blank=True, help_text='OPTIONAL: After this date/time, users will no longer be able to enroll in this mode. Leave this blank if users can enroll in this mode until enrollment closes for the course.', null=True, verbose_name='Upgrade Deadline'), migrations.AddField(
), model_name='coursemode',
name='_expiration_datetime',
field=models.DateTimeField(db_column=b'expiration_datetime', default=None, blank=True, help_text='OPTIONAL: After this date/time, users will no longer be able to enroll in this mode. Leave this blank if users can enroll in this mode until enrollment closes for the course.', null=True, verbose_name='Upgrade Deadline'),
),
]
)
] ]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment