Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2020-03-25 14:28
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('student', '0031_auto_20200317_1122'),
]

operations = [
migrations.RemoveField(
model_name='logoutviewconfiguration',
name='changed_by',
),
migrations.DeleteModel(
name='LogoutViewConfiguration',
),
]
1 change: 0 additions & 1 deletion common/djangoapps/util/tests/test_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@ class MigrationTests(TestCase):
"""

@override_settings(MIGRATION_MODULES={})
@unittest.skip("Migration will delete several models. Need to ship not referencing it first. LEARNER-2041")
def test_migrations_are_in_sync(self):
"""
Tests that the migration files are in sync with the models.
Expand Down